欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

ExpandableListView如何實現(xiàn)手風(fēng)琴效果-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)ExpandableListView如何實現(xiàn)手風(fēng)琴效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

為常寧等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及常寧網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都做網(wǎng)站、成都網(wǎng)站建設(shè)、常寧網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

具體內(nèi)容如下

1. 效果示例圖

ExpandableListView如何實現(xiàn)手風(fēng)琴效果

ExpandableListView如何實現(xiàn)手風(fēng)琴效果

ExpandableListView如何實現(xiàn)手風(fēng)琴效果

2. 創(chuàng)建方法

(1)第一種方法與ListView等普通控件一樣,直接在布局文件中添加ExpandableListView控件即可。

(2)第二種方法則是創(chuàng)建一個Activity繼承自ExpandableListActivity,而后通過getExpandableListView()方法可獲得一個ExpandableListView對象。

第二種方法僅適用于一個頁面中只有一個ExpandableListView的情況。繼承的Activity不需要再調(diào)用setContentView()方法,在ExpandableListActivity中已經(jīng)關(guān)聯(lián)了一個系統(tǒng)定義的布局文件。

3. 部分屬性和點擊事件

android:groupIndicator、android:childIndicator:組條目和子條目前面的圖標(biāo),默認(rèn)值為箭頭,可設(shè)置自定義圖片資源。若不顯示該圖標(biāo),則設(shè)置為@null。

android:divider、android:childDivider:組和子條目的分隔線。

ExpandableListView的點擊事件有兩個,分別對應(yīng)組和子條目的點擊事件:

設(shè)置組的點擊事件:setOnGroupClickListener(OnGroupClickListener listener)

設(shè)置子條目的點擊事件:setOnChildClickListener(OnChildClickListener listener)

5. 適配器

根據(jù)數(shù)據(jù)源的不同,可使用的適配器有兩個:BaseExpandableListAdapter和CursorTreeAdapter,其中,CursorTreeAdapter用于數(shù)據(jù)源為Cursor對象的情況下,其它情況則使用BaseExpandableListAdapter。

(1)BaseExpandableListAdapter需要重寫的方法:

getGroup():從數(shù)據(jù)源中獲取組的數(shù)據(jù)內(nèi)容。

getGroupCount():獲取組的總數(shù)。

getGroupId():獲取組的ID。

getGroupView():獲取組的視圖。

getChild():從數(shù)據(jù)源中獲取子條目的內(nèi)容。

getChildCount():獲取指定組中的子條目總數(shù),并非全部的子條目。

getChildId():獲取子條目的ID。

getChildView():獲取子條目的視圖

hasStableIds():判斷id對應(yīng)的條目是否已經(jīng)繪制,用于優(yōu)化列表。

isChildSelectable():子條目是否允許點擊,若返回false,則子條目點擊事件無效。

(2)CursorTreeAdapter需要重寫的方法:

CursorTreeAdapter():構(gòu)造方法傳入組的Cursor對象。

getChildrenCursor():傳入組的Cursor對象,獲取相應(yīng)的組的子條目的Cursor對象。

newGroupView():創(chuàng)建組的視圖,返回一個新的視圖。

bindGroupView():在這里綁定組視圖的數(shù)據(jù)內(nèi)容,第一個參數(shù)即newGroupView()方法的返回值。

newChildView():創(chuàng)建子條目的視圖。

bindChildView():綁定子條目視圖的數(shù)據(jù)內(nèi)容。

6. 簡單范例

實現(xiàn)效果圖中的例子。

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
  tools:context="com.studying.expandablelistviewdemo.MainActivity">

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

</LinearLayout>

Activity:

public class MainActivity extends Activity {

  private ExpandableListView elv;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    elv = (ExpandableListView) findViewById(R.id.elv_local_data);
    MyBaseExpandableListAdapter adapter = new MyBaseExpandableListAdapter(this, LoadData.getGroupData(), LoadData.getChildData());
    elv.setAdapter(adapter);
  }
}

加載測試數(shù)據(jù)用的工具類:

public class LoadData {

  // 組的數(shù)據(jù)內(nèi)容
  public static List<String> getGroupData() {
    List<String> groupDataList = new ArrayList<>();
    groupDataList.add("計算機(jī)基礎(chǔ)");
    groupDataList.add("安卓開發(fā)");
    return groupDataList;
  }

  // 子條目的數(shù)據(jù)內(nèi)容
  public static List<List<String>> getChildData() {
    List<List<String>> childDataList = new ArrayList<>();

    List<String> group1 = new ArrayList<>();
    group1.add("數(shù)據(jù)結(jié)構(gòu)");
    group1.add("算法");
    group1.add("計算機(jī)網(wǎng)絡(luò)");
    childDataList.add(group1);

    List<String> group2 = new ArrayList<>();
    group2.add("控件使用");
    group2.add("網(wǎng)絡(luò)操作");
    group2.add("數(shù)據(jù)存儲");
    group2.add("四大組件");
    childDataList.add(group2);

    return childDataList;
  }
}

適配器:

public class MyBaseExpandableListAdapter extends BaseExpandableListAdapter {

  private Context mContext;

  private List<String> groupName;
  private List<List<String>> childName;

  public MyBaseExpandableListAdapter(Context mContext, List<String> groupName, List<List<String>> childName) {
    this.mContext = mContext;
    this.groupName = groupName;
    this.childName = childName;
  }

  @Override
  public int getGroupCount() {
    return groupName.size();
  }

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

  @Override
  public String getGroup(int groupPosition) {
    return groupName.get(groupPosition);
  }

  @Override
  public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
  
    convertView = View.inflate(mContext, R.layout.item_group_name, null);

    TextView groupName = (TextView) convertView.findViewById(R.id.group_name);
    groupName.setText(getGroup(groupPosition));

    return convertView;
  }

  @Override
  public int getChildrenCount(int groupPosition) {
    return childName.get(groupPosition).size();
  }

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

  @Override
  public String getChild(int groupPosition, int childPosition) {
    return childName.get(groupPosition).get(childPosition);
  }

  @Override
  public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
  
    convertView = View.inflate(mContext, R.layout.item_child_name, null);

    TextView childName = (TextView) convertView.findViewById(R.id.child_name);
    childName.setText(getChild(groupPosition, childPosition));

    return convertView;
  }

  @Override
  public boolean hasStableIds() {
    return false;
  }

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

關(guān)于“ExpandableListView如何實現(xiàn)手風(fēng)琴效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

網(wǎng)頁名稱:ExpandableListView如何實現(xiàn)手風(fēng)琴效果-創(chuàng)新互聯(lián)
URL鏈接:http://www.aaarwkj.com/article14/pgide.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機(jī)、App開發(fā)移動網(wǎng)站建設(shè)、建站公司、網(wǎng)站設(shè)計公司服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
蜜桃成人一区二区三区| 97国产精品亚洲精品| 四虎精品视频在线播放| 日韩电影一区二区在线观看中文字幕 | 亚洲巨大黑人一区二区三区| 亚洲一区二区日韩综合久久| 亚洲一区二区精品自拍| 观看亚洲一区二区三区大片| 四虎免费在线高清观看| 日韩 欧美 国产 亚洲 综合| 国产一区二区日本在线| 要爽死国产一区在线播放| 激情久久五月激情婷婷| 午夜日韩综合激情视频在线观看| 日本色电影一区二区三区| 国产av午夜精品福利| 97精品免费在线观看| 午夜夫妻生活视频在线观看| 精品人妻av中文字幕| 日韩一区二区三级在线| 偷拍大神女厕偷拍作品| 欧美艳星一区二区三区四区| 大胸妇女引诱老师在线观看| 国产亚洲精品第一综合| 亚洲综合日韩欧美一区二区三区| 大胆丰满邻居少妇在线观看| 久久偷拍一区二区三区| 成年人免费久久毛片| 午夜精品四季av日日骚| 九九热最新视频免费看| 国产黄片免费高清观看| 日韩在线一区二区视频| 少妇被又粗又硬猛烈进视频| 亚洲av色香蕉一区二区| 国产成av人片乱码色午夜| 可以直接看内射的视频| 亚洲欧美一级二级三级| 97视频高清在线观看| 成人中文字幕日韩电影| 色婷婷综合中文久久一本| 大龄熟妇丰满有水多毛浓|