两listview联动
package com.mttz;
import java.util.ArrayList;
import java.util.List;
import com.mttz.adapter.CaiDanADP;
import com.mttz.bean.ShopDTO;
import android.graphics.Color;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.util.Log;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.ScrollView;
import android.widget.TextView;
public class CaiPinFragment extends Fragment{
//开始
ListView listView, listView2;
/**
* 本来想做标题停留在最上方的,不想想了
*/
// TextView textView;
/**
* 左边listview的要使用的数组
*/
String[] arr = new String[] {"快餐","超市","水果","生鲜","药店","更多" };
String[] arr2 = new String[] { "快餐", "水饺", "面", "米粉", "辣椒", "" };
String[] arr3 = new String[] { "超市", "急", "用", "钱", "找", "我", "们" };
String[] arr4 = new String[] { "水果", "放", "款", "快", "额" };
String[] arr5 = new String[] { "生鲜", "度", "高", "无", "需", "低", "压",
"food" };
String[] arr6 = new String[] { "药店", "联", "系", "电" };
String[] arr7 = new String[] { "更多", "话", "x", "x", "x", "x", "x",
"x", "x", "x", "美", "通", "投", "资" };
String[][] arr8 = new String[][] { arr2, arr3, arr4, arr5, arr6, arr7 };
/**
* 用来存放 food数组
*/
List<String> list;
/**
* 用来记录每一个 1 2 3 4 5 6 在右边listview的位置;
*/
List<Integer> nums = new ArrayList<Integer>();
//结束
// private ListView cp_caidan_lv,cp_caipin_lv;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_caipin,container, false);
// initWithView(rootView);
initView(rootView);
return rootView;
}
// private void initWithView(View view){
// cp_caidan_lv = (ListView) view.findViewById(R.id.cp_caidan_lv);//左侧菜单栏
// cp_caipin_lv = (ListView) view.findViewById(R.id.cp_caidan_lv);//右侧菜品栏
//
//
// }
//
private void initView(View view)
{
// textView = (TextView) findViewById(R.id.textView1);
listView = (ListView) view.findViewById(R.id.cp_caidan_lv);
List<String> CaiPinLV= new ArrayList<String>();
// list = new ArrayList<String>();
for (int j = 0; j < arr.length; j++)
{
CaiPinLV.add(arr[j]);
}
CaiDanADP adp = new CaiDanADP(CaiPinLV, getActivity());
listView.setAdapter(adp);
list = new ArrayList<String>();
for (int j = 0; j < arr8.length; j++)
{
for (int j2 = 0; j2 < arr8[j].length; j2++)
{
list.add(arr8[j][j2]);
}
}
for (int i = 0; i < arr8.length; i++)
{
if (i == 0)
{
nums.add(0);
} else if (i > 0 && i < arr8.length)
{
int num = 0;
for (int j = 0; j < i; j++)
{
num = num + arr8[j].length;
}
nums.add(num);
}
}
listView2 =(ListView) view.findViewById(R.id.cp_caipin_lv);
listView2.setAdapter(new MyAdapter());
/**
*
* 判断listview滑动
* */
listView2.setOnScrollListener(new AbsListView.OnScrollListener()
{
@Override
public void onScrollStateChanged(AbsListView view, int scrollState)
{
}
@Override
public void onScroll(AbsListView view, int firstVisibleItem,
int visibleItemCount, int totalItemCount)
{
if (nums.contains(firstVisibleItem) && listView.getChildCount() > 0)
{
for (int i = 0; i < listView.getChildCount(); i++)
{
if (i == nums.indexOf(firstVisibleItem))
{
listView.getChildAt(i).setBackgroundColor(
Color.rgb(200, 200, 200));
} else
{
listView.getChildAt(i).setBackgroundColor(Color.TRANSPARENT);
}
}
}
}
});
listView.setOnItemClickListener(new AdapterView.OnItemClickListener()
{
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id)
{
for (int i = 0; i < listView.getChildCount(); i++)
{
if (i == position)
{
view.setBackgroundColor(Color.rgb(255, 250, 250));
} else
{
view.setBackgroundColor(Color.rgb(200, 200, 200));
}
}
listView2.setSelection(nums.get(position));
}
});
}
class MyAdapter extends BaseAdapter
{
private LayoutInflater inflater;
@Override
public int getCount()
{
return list.size();
}
@Override
public Object getItem(int position)
{
return list.get(position);
}
@Override
public long getItemId(int position)
{
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
// TextView textView = new TextView(getActivity());
// textView.setText(list.get(position));
// textView.setGravity(Gravity.CENTER_VERTICAL);
// textView.setMinHeight(200);
//
//
// if (nums.contains(position))
// {
// textView.setBackgroundColor(Color.argb(80,80, 80, 80));
// }
// if (convertView == null) {
inflater = LayoutInflater.from(getActivity());
convertView = inflater.inflate(R.layout.shop_item, null);
TextView shop_name = (TextView) convertView.findViewById(R.id.shop_name);
ImageView shoplogo = (ImageView) convertView.findViewById(R.id.shop_logo);
// convertView.setTag(holder);
shop_name.setText(list.get(position));
shoplogo.setBackgroundResource(R.drawable.eleme_sjm);
if (nums.contains(position))
{
convertView = inflater.inflate(R.layout.goods_details, null);
// convertView.setg
TextView cp = (TextView) convertView.findViewById(R.id.cp_root);
cp.setText(list.get(position));
cp.setTextColor(Color.rgb(255,250,250));
convertView.setBackgroundColor(Color.rgb(200, 200, 200));
return convertView;
}else {
return convertView;
}
// }
//
//
// if (mInfo!=null) {
// String shopname= mInfo.getShopname();
// String imageUrl = mInfo.getShoplogo();
}
}
}
两listview联动的更多相关文章
- 仿饿了吗点餐界面两个ListView联动效果
这篇文章主要介绍了仿饿了点餐界面2个ListView联动效果的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下 如图是效果图: 是仿饿了的点餐界面 1.点击左侧的ListView,通过在在适 ...
- 解析ListView联动的实现--仿饿了么点餐界面
一.博客的由来 大神王丰蛋哥 之前一篇博客仿饿了点餐界面2个ListView联动(http://www.cnblogs.com/wangfengdange/p/5886064.html) 主要实现了2 ...
- Android实现导航菜单随着ListView联动,当导航菜单遇到顶部菜单时停止在哪里,并且listview仍能滑动
需求:现要实现一个特殊UI的处理,如下图所示: 该布局的上面是一个“按钮”,中间是一个“空白布局(当然也可以是ViewPager等)”,下面是一个页面的导航菜单,底部是一个ListView. 要求:滑 ...
- 仿饿了点餐界面2个ListView联动
如图是效果图 是仿饿了的点餐界面 1.点击左侧的ListView,通过在在适配器中设置Item来改变颜色,再通过notifyDataSetInvalidated来刷新并用lv_home.setSele ...
- ajax实现无刷新两级联动DropDownList
ajax实现的无刷新三级联动 http://zhangyu028.cnblogs.com/articles/310568.html 本文来自小山blog:http://singlepine.cnblo ...
- JS练习:两级联动
代码: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title ...
- Combobox下拉框两级联动
下拉框的两级联动是我们开发中经常遇到一种情况.比如一个学生管理系统中,根据年级.科目及姓名查询学生考试成绩,年级和科目都是硬盘中的有限数据(数据库)而学生则可以有用户手动指定,这时在数据库中有年级和科 ...
- 仿美团外卖,饿了吗 两个ListView联动,左边点击切换右边,右边滑动切换左边
先上效果图: 实现思路: 1.先说右边标题: 首先,右边的数据源集合中的Javabean中含有三个属性name,type,title,而每个条目中会默认含有一个标题. 如果这是第一个条目,就让标题显示 ...
- android 带表头,左右两个联动的ListView
package com.rytong.mylist; import java.util.ArrayList; import java.util.HashMap; import java.util.Li ...
随机推荐
- 闲话Promise机制
Promise的诞生与Javascript中异步编程息息相关,js中异步编程主要指的是setTimout/setInterval.DOM事件机制.ajax,通过传入回调函数实现控制反转.异步编程为js ...
- Html5下拉控件同时支持文本输入和下拉代码
有时候,下拉框不能满足我们的业务需求,还需要同时支持用户输入内容,默认的select标签是不支持用户输入的,下面我说一下原生的select如何支持用户输入,代码如下: <!DOCTYPE htm ...
- (转)利用libcurl和国内著名的两个物联网云端通讯的例程, ubuntu和openwrt下调试成功(四)
1. libcurl 的参考文档如下 CURLOPT_HEADERFUNCTION Pass a pointer to a function that matches the following pr ...
- Error on line -1 of document : Premature end of file. Nested exception: Premature end of file.
启动tomcat, 出现, ( 之前都是好好的... ) [lk ] ERROR [08-12 15:10:02] [main] org.springframework.web.context.Con ...
- 深入浅出Struts2+Spring+Hibernate框架
一.深入浅出Struts2 什么是Struts2? struts2是一种基于MVC的轻量级的WEB应用框架.有了这个框架我们就可以在这个框架的基础上做起,这样就大大的提高了我们的开发效率和质量,为公司 ...
- js倒计时-倒计输入的时间
计算指定时间到指定时间之间相差多少天.时.分.秒. 节日.活动.商城常用. 原理: 主要使用到时间戳,也就是从1970 年 1 月 1 日 到指定时间的毫秒数. 1. 求出毫秒差 :当两个时间直接进行 ...
- C++服务器开发之笔记三
为什么需要原子性操作? 我们考虑一个例子:(1)x++这个常见的运算符在内存中是怎样操作的?从内存中读x的值到寄存器中,对寄存器加1,再把新值写回x所处的内存地址 若是有两个线程同时对同一个变量++, ...
- js的OOP继承实现
以下视频截图均来自慕课网javascript深入浅出: 这里Student.prototype之所以使用create方法来创建,而不是直接赋Person.prototype的值,是因为如果使用赋值的话 ...
- 【那些年关于java多态应用】
1.多态:具有表现多种形态的能力的特征 父类: public abstract class Animal { public abstract void Say();} 子类: public class ...
- EF 在controller弹出提示消息
第一种方式: return Content("<script>alert('此名称课程再次班级中已经存在!');window.location.href = 'Course/Cr ...