Android ExpandableListView几个特殊的属性
原帖地址:http://blog.csdn.net/t12x3456/article/details/7828620
1. 設置ExpandableListView 默認是展開的:
先實例化 exListView
然后
? ?exListView.setAdapter(exlvAdapter);
? ?//遍歷所有group,將所有項設置成默認展開
? ?int groupCount = exListView.getCount();
? ?for (int i=0; i<groupCount; i++) {
? ? ? ?exListView.expandGroup(i);
? ? ? ?};
| ? |
2. 去掉ExpandableListView 默認的箭頭
? 用到ExpandableListView時有個箭頭圖標系統自帶的在你自定義布局也不能去掉只要設置一個屬性即可,如下:
? settingLists.setGroupIndicator(null);? ~~~~~~~~~~~~~~~~~此處就是設置自定義的箭頭圖標的。置空則沒有了。
也可以自定義(但是位置還是在那個地方不推薦)如下:
首先,自定義一個expandablelistviewselector.xml文件,具體內容如下:?
Java代碼
<?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>??
加一句代碼如下:
settingLists.setGroupIndicator(this.getResources().getDrawable(R.drawable.expandablelistviewselector));?
大功告成
3. 將默認的箭頭修改到右邊顯示:
1首先 ExpandableListView elistview;
? ? ? ?? elistview.setGroupIndicator(null);//將控件默認的左邊箭頭去掉,
2在 自定義的繼承自BaseExpandableListAdapter的adapter中有一個方法
/**
?* 父類view
?*/
??? @Override
??? public View getGroupView(int groupPosition, boolean isExpanded,
??? ??? ??? View convertView, ViewGroup parent) {
??? ??? Log.i("zhaoxiong","parent view");
??? ??? ??? LinearLayout parentLayout=(LinearLayout) View.inflate(context, R.layout.wowocoupons_parent_item, null);
??? ??? ??? TextView parentTextView=(TextView) parentLayout.findViewById(R.id.parentitem);
??? ??? ??? parentTextView.setText(parentlist.get(groupPosition));
??? ??? ??? ImageView parentImageViw=(ImageView) parentLayout.findViewById(R.id.arrow);
//判斷isExpanded就可以控制是按下還是關閉,同時更換圖片
??????? ??? if(isExpanded){
??? ??? ??? ??? parentImageViw.setBackgroundResource(R.drawable.arrow_down);
??? ??? ??? }else{
??? ??? ??? ??? parentImageViw.setBackgroundResource(R.drawable.arrow_up);
??? ??? ??? }
??? ????
??? ??? return parentLayout;
??? }
總結
以上是生活随笔為你收集整理的Android ExpandableListView几个特殊的属性的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android WebView 开发详解
- 下一篇: android webview 加载进度