您的位置:首页 > 移动开发 > Android开发

Android之ExpandableListView的属性(Group不展开)

2016-01-20 16:27 621 查看
Android之ExpandableListView的属性(Group不展开)

1. 设置ExpandableListView 默认是展开的:

先实例化exListView 然后

[java] view
plain copy

exListView.setAdapter(exlvAdapter);

//遍历所有group,将所有项设置成默认展开

intgroupCount = exListView.getCount();

for (inti=0; i<groupCount; i++)

{

exListView.expandGroup(i);

};

2. 去掉ExpandableListView 默认的箭头

用到ExpandableListView时有个箭头图标系统自带的在你自定义布局也不能去掉只要设置一个属性即可,如下:

settingLists.setGroupIndicator(null); ~~~~~~~~~~~~~~~~~此处就是设置自定义的箭头图标的。置空则没有了。

也可以自定义(但是位置还是在那个地方不推荐)如下:

首先,自定义一个expandablelistviewselector.xml文件,具体内容如下: Java代码

[html] view
plain copy

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">

<item android:state_expanded="true" android:drawable="@drawable/expandablelistviewindicatordown" />

<item android:drawable="@drawable/expandablelistviewindicator" />

</selector>

加一句代码如下:

[java] view
plain copy

settingLists.setGroupIndicator(this.getResources().getDrawable(R.layout.expandablelistviewselector));

或xml设置:

android:groupIndicator="@drawable/groupIndicator_selector"

大功告成

3. 将默认的箭头修改到右边显示:

1首先ExpandableListViewelistview;

elistview.setGroupIndicator(null);//将控件默认的左边箭头去掉,

2在自定义的继承自BaseExpandableListAdapter的adapter中有一个方法

[java] view
plain copy

/** * 父类view */ @Override

ublic View getGroupView(intgroupPosition, booleanisExpanded, View convertView, ViewGroup parent)

{ Log.i("zhaoxiong","parent view");

LinearLayoutparentLayout=(LinearLayout) View.inflate(context, R.layout.wowocoupons_parent_item, null);

TextViewparentTextView=(TextView)parentLayout.findViewById(R.id.parentitem);

parentTextView.setText(parentlist.get(groupPosition));

ImageViewparentImageViw=(ImageView) parentLayout.findViewById(R.id.arrow);

//判断isExpanded就可以控制是按下还是关闭,同时更换图片

if(isExpanded){

parentImageViw.setBackgroundResource(R.drawable.arrow_down);

}else{

parentImageViw.setBackgroundResource(R.drawable.arrow_up); }

return parentLayout;

}

expandablelistview响应onGroupClick监听:设置expandablelistview.setOnGroupClickListener()

折叠和展开事件,可以设置setOnGroupCollapseListener和setOnGroupExpandListener

ExpandableListView中包含多个group,想要展开一个group时,其他group都关闭:

[java] view
plain copy

exList.setOnGroupExpandListener(new OnGroupExpandListener() {

@Override

public void onGroupExpand(int groupPosition) {

for (int i = 0; i < getData().size(); i++) {

if (groupPosition != i) {

exList.collapseGroup(i);

}

}

}

});

3.expandablelistview的Group点击事件,onGroupClick的返回值false展开,true不展开

[java] view
plain copy

tt_list.setOnGroupClickListener(new OnGroupClickListener() {

@Override

public boolean onGroupClick(ExpandableListView parent, View v,

int groupPosition, long id) {

IsFlag=true;

if(adapter.getGroupData().get(groupPosition).getList().size()==1){

Bundle b=new Bundle();

b.putInt("saveIndex", 0);

// b.putString("mac", mac);

// b.putString("deviceId", mDeviceId);

b.putSerializable("datalist", adapter.getGroupData().get(groupPosition).getList());

Intent i=new Intent(WappushBindingActivity.this,VideoPlayerActivity.class);

i.putExtras(b);

startActivity(i);

}

// int groupCount = tt_list.getCount();

// for (int i=0; i<groupCount; i++){

// if(i!=GroupPosition)

// tt_list.collapseGroup(i);

// };

// Log.v("xulongheng*WappushBind*tt_list", "onGroupClick:"+previousX+"/"+previousY);

return true; //默认为false,设为true时,点击事件不会展开Group

}

});

转载:/article/2598657.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: