Android UIコントロールExpandable ListViewの基本的な使い方


Expandable ListViewの紹介 
Expandable ListViewの導入 
Expandable ListViewは、リストビュー(ListView)とは異なる、2つのレベルのリストの項目を垂直スクロール表示します。Expandable ListViewは2つのレベルがあります。1級リストには2級のリストがあります。
 例えば携帯電話の設定では、分類に効果があります。携帯版QQもこのような効果です。
 
Expandable ListViewを使う全体的な考え方 
(1)Expandable ListViewにアダプターを設定するには、まずデータソースを設定しなければなりません。
 (2)データソースは、ここのアダプター類Expandable Adapterです。この方法はBaseExpandable ListAdapterを継承しています。中の10の方法を書き換える必要があります。
 データソースでは、カスタムViewレイアウトが使用されています。この場合は、自分のニーズに応じて、グループとサブアイテムのレイアウトスタイルを設定します。
 get Child View()とget Group View()の方法はカスタムレイアウトを設定します。 
(3)データソースを設定し、Expandable ListView.setAdapter()に直接供給すれば、この収縮機能が実現できます。 
Expandable ListViewの完全コードを実現しました。
 (1)activity_main.xml:Expandable ListViewコントロールを中に置いてください。 

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context="com.smyhvae.expandablelistviewdemo.MainActivity">


 <ExpandableListView
  android:id="@+id/expandableListView"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  />

</RelativeLayout> 

(2)item_group.xml:一級リストのitemのレイアウト

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#cccccc"
    android:orientation="horizontal">

 <TextView
  android:id="@+id/tv_group"
  android:layout_width="wrap_content"
  android:layout_height="30dp"
  android:gravity="center"
  android:text="group text"
  android:textColor="#000000"
  />

</LinearLayout> 

(3)item_child.xml:二級リストのアイテムのレイアウト

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal">

 <ImageView
  android:id="@+id/iv_child"
  android:layout_width="30dp"
  android:layout_height="30dp"
  android:src="@mipmap/ic_launcher"/>

 <TextView
  android:id="@+id/tv_child"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="item text"
  android:textColor="#000000"/>

</LinearLayout> 

(4)MainActivity.java: 

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.ImageView;
import android.widget.TextView;

public class MainActivity extends Activity {

 //View
 private ExpandableListView expandableListView;

 //Model:     
 private String[] groups = {"A", "B", "C"};

 //  ,        {{"A1,A2,A3,A4"}, {"B1,B2,B3,B4,B5"}, {"C1,C2,C3,C4"}}
 private String[][] childs = {{"A1", "A2", "A3", "A4"}, {"A1", "A2", "A3", "B4"}, {"A1", "A2", "A3", "C4"}};


 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  expandableListView = (ExpandableListView) findViewById(R.id.expandableListView);

  expandableListView.setAdapter(new MyExpandableListView());

 }


 // ExpandableListView      
 class MyExpandableListView extends BaseExpandableListAdapter {

  //         
  @Override
  public int getGroupCount() {
   return groups.length;
  }

  //           
  @Override
  public int getChildrenCount(int groupPosition) { //  groupPosition         
   Log.d("smyhvae", "-->" + groupPosition);
   return childs[groupPosition].length;
  }

  //         item(      )
  @Override
  public Object getGroup(int groupPosition) {
   return groups[groupPosition];
  }

  //          item(      )
  @Override
  public Object getChild(int groupPosition, int childPosition) {
   return childs[groupPosition][childPosition]; //     groups[groupPosition][childPosition]
  }

  @Override
  public long getGroupId(int groupPosition) {
   return groupPosition;
  }

  @Override
  public long getChildId(int groupPosition, int childPosition) {
   return childPosition;
  }

  //  item id     ?   true
  @Override
  public boolean hasStableIds() {
   return true;
  }

  //【  】      
  @Override
  public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {

   if (convertView == null) {
    convertView = getLayoutInflater().inflate(R.layout.item_group, null);
   } else {

   }
   TextView tv_group = (TextView) convertView.findViewById(R.id.tv_group);
   tv_group.setText(groups[groupPosition]);
   return convertView;
  }

  //【  】      
  @Override
  public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {

   if (convertView == null) {
    convertView = getLayoutInflater().inflate(R.layout.item_child, null);
   }

   ImageView iv_child = (ImageView) convertView.findViewById(R.id.iv_child);
   TextView tv_child = (TextView) convertView.findViewById(R.id.tv_child);

   //iv_child.setImageResource(resId);
   tv_child.setText(childs[groupPosition][childPosition]);

   return convertView;
  }

  //      item       ?    true
  @Override
  public boolean isChildSelectable(int groupPosition, int childPosition) {
   return true;
  }
 }


} 

注:CovertViewとView Holderの最適化は自分で完成してください。 
工程ファイル:(Android Studio 2.1)http://xiazai.jb51.net/201609/yuanma/AndroidExpandableListView(jb 51.net)rar
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。