實(shí)現(xiàn)多級列表(二級列表嵌套)

效果圖:




實(shí)現(xiàn)步驟:

ExpandableListView 布局文件



2. 寫適配器??

3 適配器?



//嵌套的ExpandableListViewAdapter?

自定義?ExpandableListView條目顯示不全的問題


//2級 的適配器


//設(shè)置父標(biāo)題


//子條目


//設(shè)置 字體


// 適配器 布局?

android:clickable="false"

android:focusable="false"

android:focusableInTouchMode="false"

//防止 父條目 不可點(diǎn)擊



package com.example.jixiaxian;

import android.os.Bundle;

import android.os.Handler;

import android.os.Message;

import android.support.v7.app.AppCompatActivity;

import android.support.v7.widget.LinearLayoutManager;

import android.support.v7.widget.RecyclerView;

import android.util.Log;

import android.view.View;

import android.widget.CheckBox;

import android.widget.ExpandableListView;

import com.google.gson.Gson;

import java.io.InputStream;

import java.net.HttpURLConnection;

import java.net.URL;

import java.util.ArrayList;

import java.util.List;

import butterknife.BindView;

import butterknife.ButterKnife;

public class Main4Activityextends AppCompatActivity {

@BindView(R.id.ed)

ExpandableListViewed;

Handlerh =new Handler() {

@Override

? ? ? ? public void handleMessage(Message msg) {

super.handleMessage(msg);

NewsGong xiao = (NewsGong) msg.obj;

initView(xiao);

}

};

private MyadbmyAdapter;

@Override

? ? protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main4);

ButterKnife.bind(this);

shuju();

}

private void shuju() {

new Thread() {

@Override

? ? ? ? ? ? public void run() {

super.run();

try {

URL url =new URL("http://172.16.54.31:8080/test/ff.txt");

HttpURLConnection uop = (HttpURLConnection) url.openConnection();

int responseCode = uop.getResponseCode();

if (responseCode ==200) {

InputStream inputStream = uop.getInputStream();

byte[] a =new byte[1024];

int a1 = -1;

StringBuffer stringBuffer =new StringBuffer();

while ((a1 = inputStream.read(a)) != -1) {

stringBuffer.append(new String(a,0, a1,"GBK"));

}

String s = stringBuffer.toString();

System.out.println(s);

Gson gson =new Gson();

Log.e("2222","run: " + s);

NewsGong xiao = gson.fromJson(s, NewsGong.class);

Message obtain = Message.obtain();

obtain.what =1;

obtain.obj = xiao;

h.sendMessage(obtain);

}

}catch (Exception e) {

e.printStackTrace();

}

}

}.start();

}

private void initView(NewsGong xiao) {

List child = xiao.getCHILD();

final Myeds myeds =new Myeds(child,this);

ed.setAdapter(myeds);

//設(shè)置 默認(rèn)上下? 開關(guān)圖? 不可見

? ? ? ? ed.setGroupIndicator(null);

ed.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() {

@Override

? ? ? ? ? ? public boolean onGroupClick(ExpandableListView parent, View v,int groupPosition,long id) {

//判斷 是否展開 設(shè)置 圖片樣子

? ? ? ? ? ? ? ? myeds.setSetBuon(!parent.isGroupExpanded(groupPosition));

return false;

}

});

}

}


//適配器

package com.example.jixiaxian;

import android.annotation.TargetApi;

import android.content.Context;

import android.os.Build;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.widget.AbsListView;

import android.widget.BaseExpandableListAdapter;

import android.widget.CheckBox;

import android.widget.ExpandableListView;

import android.widget.ImageView;

import android.widget.TextView;

import java.util.ArrayList;

import java.util.List;

public class Myedsextends BaseExpandableListAdapter {

private Lists;

private Contextcontext;

private boolean bo;

public Myeds(List s, Context context) {

this.s = s;

this.context = context;

}

@Override

? ? public int getGroupCount() {

return s.size();

}

@Override

? ? public int getChildrenCount(int groupPosition) {

//這里 必須是 1? 要不里面2級數(shù)據(jù) 會 重復(fù)添加

? ? ? ? return 1;

}

@Override

? ? public Object getGroup(int groupPosition) {

return s.get(groupPosition);

}

@Override

? ? public Object getChild(int groupPosition,int childPosition) {

return s.get(groupPosition).getCHILD().get(childPosition);

}

@Override

? ? public long getGroupId(int groupPosition) {

return groupPosition;

}

@Override

? ? public long getChildId(int groupPosition,int childPosition) {

return childPosition;

}

@Override

? ? public boolean hasStableIds() {

return true;

}

@Override

? ? public View getGroupView(int groupPosition,boolean isExpanded, View convertView, ViewGroup parent) {

ViewHodule hodule=null;

if(convertView==null){

convertView= LayoutInflater.from(context).inflate(R.layout.layout_item1,null);

hodule=new ViewHodule();

hodule.fs=convertView.findViewById(R.id.cbx);

hodule.zi=convertView.findViewById(R.id.zi);

convertView.setTag(hodule);

}else{

hodule = (ViewHodule) convertView.getTag();

}

hodule.zi.setText(s.get(groupPosition).getNAME());

//根據(jù)當(dāng)前展開狀態(tài) 設(shè)置圖片 方向

? ? ? ? hodule.fs.setChecked(bo);

return convertView;

}

@Override

? ? public View getChildView(int groupPosition,int childPosition,boolean isLastChild, View convertView, ViewGroup parent) {

//嵌套ExpandableListView

? ? ? ? return? ? getGenericExpandableListView(s.get(groupPosition));

}

//嵌套ExpandableListView? 2級

? ? @TargetApi(Build.VERSION_CODES.JELLY_BEAN)

public ExpandableListView getGenericExpandableListView(NewsGong.CHILDBeanXX? college){

AbsListView.LayoutParams layoutParams =new AbsListView.LayoutParams(

ViewGroup.LayoutParams.MATCH_PARENT,

ViewGroup.LayoutParams.WRAP_CONTENT);

CustomExpandableListView view =new CustomExpandableListView(context);

// 加載2級的適配器

? ? ? ? final ClassesExpandableListViewAdapter adapter =new ClassesExpandableListViewAdapter(college.getCHILD(),context);

view.setAdapter(adapter);

view.setGroupIndicator(null);

view.setPadding(20,0,0,0);

view.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() {

@Override

? ? ? ? ? ? public boolean onGroupClick(ExpandableListView parent, View v,int groupPosition,long id) {

//判斷 是否展開 設(shè)置 圖片樣子

? ? ? ? ? ? ? ? adapter.setSetBuon(!parent.isGroupExpanded(groupPosition),groupPosition);

return false;

}

});

return view;

}

@Override

? ? public boolean isChildSelectable(int groupPosition,int childPosition) {

return true;

}

//設(shè)置狀態(tài)? 是否展開

? ? public void setSetBuon(boolean b) {

bo =b;

}

class ViewHodule {

TextViewzi;

CheckBoxfs;

}

}


自定義?

public class CustomExpandableListViewextends ExpandableListView {

public CustomExpandableListView(Context context) {

super(context);

}

public CustomExpandableListView(Context context, AttributeSet attrs,int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

public CustomExpandableListView(Context context, AttributeSet attrs) {

super(context, attrs);

}

@Override

? ? protected void onMeasure(int widthMeasureSpec,int heightMeasureSpec) {

// 解決2級條目顯示不全的問題

? ? ? ? int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >>2

? ? ? ? ? ? ? ? , MeasureSpec.AT_MOST);

super.onMeasure(widthMeasureSpec, expandSpec);

}

}

//2級? 適配器

package com.example.jixiaxian;

import android.app.Activity;

import android.content.Context;

import android.graphics.Color;

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.BaseExpandableListAdapter;

import android.widget.CheckBox;

import android.widget.TextView;

import java.util.List;

public class ClassesExpandableListViewAdapterextends BaseExpandableListAdapter {

// 集合

? ? private Listclasses;

// 創(chuàng)建布局使用

? ? private Contextactivity;

private boolean but;

private int grs;

public ClassesExpandableListViewAdapter(List classes, Context activity) {

this.classes = classes;

this.activity = activity;

}

@Override

? ? public int getGroupCount() {

// 獲取一級條目的數(shù)量? 就是班級的大小

? ? ? ? return classes.size();

}

@Override

? ? public int getChildrenCount(int groupPosition) {

// 當(dāng)它子空間沒有 數(shù)據(jù)時(shí)

? ? ? ? if(classes.get(groupPosition).getCHILD()!=null){

int size =classes.get(groupPosition).getCHILD().size();

Log.e("11111","getChildrenCount: "+size );

return classes.get(groupPosition).getCHILD().size();

}

return? 0;

}

@Override

? ? public Object getGroup(int groupPosition) {

// 獲取一級條目的對應(yīng)數(shù)據(jù)

? ? ? ? return classes.get(groupPosition);

}

@Override

? ? public Object getChild(int groupPosition,int childPosition) {

// 獲取對應(yīng)一級條目下二級條目的對應(yīng)數(shù)據(jù)? 感覺沒什么用

? ? ? ? return classes.get(groupPosition).getCHILD().get(childPosition);

}

@Override

? ? public long getGroupId(int groupPosition) {

// 直接返回,沒什么用

? ? ? ? return groupPosition;

}

@Override

? ? public long getChildId(int groupPosition,int childPosition) {

// 直接返回卷仑,沒什么用

? ? ? ? return childPosition;

}

@Override

? ? public boolean hasStableIds() {

return false;

}

@Override

? ? public View getGroupView(int groupPosition,boolean isExpanded, View convertView, ViewGroup parent) {

// 獲取對應(yīng)一級條目的View? 和ListView 的getView相似

? ? ? ? String leaf =classes.get(groupPosition).getLEAF();

//數(shù)據(jù)源里的? LEAF 是? 1? 是 沒有子數(shù)據(jù)? 2是 有數(shù)據(jù)

? ? ? ? ViewHodule hodule=null;

if("2".equals(leaf)){

View inflate = LayoutInflater.from(activity).inflate(R.layout.layout_item2,null);

CheckBox? checkBox = inflate.findViewById(R.id.cbx1);

TextView? viewById = inflate.findViewById(R.id.zi2);

//當(dāng)點(diǎn)擊的 那個(gè)索引時(shí)才 打開圖片

? ? ? ? ? ? if(grs==groupPosition){

checkBox.setChecked(but);

}

viewById.setText(classes.get(groupPosition).getNAME());

return inflate;

}else{

return getGenericView(classes.get(groupPosition).getNAME());

}

}

public void setSetBuon(boolean b,int groupPosition) {

//是否展開狀態(tài)

? ? ? ? but=b;

//記錄索引

? ? ? ? grs=groupPosition;

}

class? ViewHodule{

TextViewzi1;

CheckBoxbox;

}

@Override

? ? public View getChildView(int groupPosition,int childPosition,boolean isLastChild, View convertView, ViewGroup parent) {

// 獲取對應(yīng)二級條目的View? 和ListView 的getView相似

? ? ? ? return? getGenericView1(classes.get(groupPosition).getCHILD().get(childPosition).getNAME());

}

@Override

? ? public boolean isChildSelectable(int groupPosition,int childPosition) {

// 根據(jù)方法名笛园,此處應(yīng)該表示二級條目是否可以被點(diǎn)擊? 先返回true 再講

? ? ? ? return true;

}

/**

* 根據(jù)字符串生成布局,恕刘,因?yàn)槲覜]有寫layout.xml 所以用java 代碼生成

*

*? ? ? 實(shí)際中可以通過Inflate加載自己的自定義布局文件峻凫,設(shè)置數(shù)據(jù)之后并返回

? ? * @param string

? ? * @return

? ? */

? ? private TextView getGenericView(String string) {

AbsListView.LayoutParams layoutParams =new AbsListView.LayoutParams(

ViewGroup.LayoutParams.MATCH_PARENT,

ViewGroup.LayoutParams.WRAP_CONTENT);

TextView textView =new TextView(activity);

textView.setLayoutParams(layoutParams);

textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);

//設(shè)置? 北方大區(qū)? 左右距離

? ? ? ? textView.setPadding(180,30,0,30);

textView.setText(string);

textView.setTextSize(20);

textView.setTextColor(Color.BLACK);

return textView;

}

private TextView getGenericView1(String string) {

AbsListView.LayoutParams layoutParams =new AbsListView.LayoutParams(

ViewGroup.LayoutParams.MATCH_PARENT,

ViewGroup.LayoutParams.WRAP_CONTENT);

TextView textView =new TextView(activity);

textView.setLayoutParams(layoutParams);

textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);

//設(shè)置? 北方大區(qū)里第3級? 左右距離

? ? ? ? textView.setPadding(240,30,0,30);

textView.setText(string);

textView.setTextSize(20);

textView.setTextColor(Color.BLACK);

return textView;

}

}

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

? ? xmlns:app="http://schemas.android.com/apk/res-auto"

? ? xmlns:tools="http://schemas.android.com/tools"

? ? android:layout_width="match_parent"

? ? android:layout_height="match_parent"

? ? tools:context=".Main4Activity">

? ? ? ? android:id="@+id/ed"

? ? ? ? android:layout_width="match_parent"

? ? ? ? android:layout_height="match_parent">

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

? ? android:layout_width="match_parent"

? ? android:orientation="horizontal"

? ? android:layout_height="wrap_content">

? ? ? ? android:id="@+id/cbx"

? ? ? ? android:layout_width="40dp"

? ? ? ? android:layout_height="40dp"

? ? ? ? android:button="@null"

? ? ? ? android:layout_gravity="center_vertical"

? ? ? ? android:clickable="false"

? ? ? ? android:focusable="false"

? ? ? ? android:focusableInTouchMode="false"

? ? ? ? android:background="@drawable/sub_square"/>

? ? android:id="@+id/li"

? ? android:layout_width="match_parent"

? ? android:orientation="horizontal"

? ? android:layout_height="wrap_content">

? ? ? ? android:id="@+id/zi"

? ? ? ? android:layout_width="match_parent"

? ? ? ? android:layout_height="wrap_content"

? ? ? ? android:padding="10dp"

? ? ? ? android:layout_gravity="center_vertical"

? ? ? ? android:layout_marginLeft="10dp"

? ? ? ? android:textSize="20sp"

? ? ? ? android:textColor="#222222"

? ? ? ? android:text="@string/app_name"/>

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末愕撰,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子斟冕,更是在濱河造成了極大的恐慌口糕,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件磕蛇,死亡現(xiàn)場離奇詭異景描,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)秀撇,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門伏伯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人捌袜,你說我怎么就攤上這事说搅。” “怎么了虏等?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵弄唧,是天一觀的道長。 經(jīng)常有香客問我霍衫,道長候引,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任敦跌,我火速辦了婚禮澄干,結(jié)果婚禮上逛揩,老公的妹妹穿的比我還像新娘。我一直安慰自己麸俘,他們只是感情好辩稽,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著从媚,像睡著了一般逞泄。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上拜效,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天喷众,我揣著相機(jī)與錄音,去河邊找鬼紧憾。 笑死到千,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的赴穗。 我是一名探鬼主播父阻,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼望抽!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起履婉,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤煤篙,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后毁腿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體辑奈,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年已烤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了鸠窗。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡胯究,死狀恐怖稍计,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情裕循,我是刑警寧澤臣嚣,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站剥哑,受9級特大地震影響硅则,放射性物質(zhì)發(fā)生泄漏拜马。R本人自食惡果不足惜萧锉,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望膳音。 院中可真熱鬧,春花似錦大审、人聲如沸蘸际。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽捡鱼。三九已至,卻和暖如春酷愧,著一層夾襖步出監(jiān)牢的瞬間驾诈,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工溶浴, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留乍迄,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓士败,卻偏偏與公主長得像闯两,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子谅将,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容