前言
本章內容是android.widget.ResourceCursorTreeAdapter,版本為Android 3.1 r1,為Android 3.0 r1新增API,翻譯來自"xiaoQLu",歡迎訪問它的部落格:"http://www.cnblogs.com/xiaoQLu",再次感謝"xiaoQLu" !期待你一起參與Android API的翻譯,聯絡我over140@gmail.com。
聲明
歡迎轉載,但請保留文章原始出處:)
部落格園:http://www.cnblogs.com/
Android中文翻譯組:http://goo.gl/6vJQl
結構
繼承關係
public abstract classt ResourceCursorTreeAdapter extends CursorTreeAdapter
java.lang.Object
android.widget.BaseExpandableListAdapter
android.widget.CursorTreeAdapter
android.widget.ResourceCursorTreeAdapter
直接子類
SimpleCursorTreeAdapter
類概述
一個簡單的可擴充的ExpandableListAdapter,通過在XML檔案來建立views。你可以指定一個定義了views外觀的XML檔案。
建構函式
public ResourceCursorTreeAdapter (Context context, Cursor cursor, int collapsedGroupLayout, int expandedGroupLayout, int childLayout, int lastChildLayout)
建構函式。
參數
context 和正在啟動並執行SimpleListItemFactory關聯的ListView的上下文
cursor 資料庫遊標
collapsedGroupLayout 定義了收縮組的視圖布局檔案的資源標識
expandedGroupLayout 定義了展開組的視圖布局檔案的資源標識
childLayout 定義了除了最後一個的所有子視圖的布局檔案的資源標識
lastChildLayout 定義了一組中最後一個子視圖的布局檔案的資源標識
public ResourceCursorTreeAdapter (Context context, Cursor cursor, int collapsedGroupLayout, int expandedGroupLayout, int childLayout)
建構函式。
參數
context 和正在啟動並執行SimpleListItemFactory關聯的ListView的上下文
cursor 資料庫遊標
collapsedGroupLayout 定義了收縮組的視圖布局檔案的資源標識
expandedGroupLayout 定義了展開組的視圖布局檔案的資源標識
childLayout 定義了除了最後一個的所有子視圖的布局檔案的資源標識
public ResourceCursorTreeAdapter (Context context, Cursor cursor, int groupLayout, int childLayout)
建構函式。
參數
context 和正在啟動並執行SimpleListItemFactory關聯的ListView的上下文
cursor 資料庫遊標
groupLayout 為所有組定義了視圖布局檔案的資源標識
expandedGroupLayout 定義了展開組的視圖布局檔案的資源標識
childLayout 定義了除了最後一個的所有子視圖的布局檔案的資源標識
公用方法
protected abstract View newChildView (Context context, Cursor cursor, boolean isLastChild, ViewGroup parent)
建立一個新的子項目視圖並持有指向資料的遊標cursor。
參數
context 應用程式內容物件
cursor 擷取資料的遊標對象,它已經移動到正確的位置
IsLastChild 子項目是否處於組中的最後一個
parent 新視圖(View)所依附於的父物件。
傳回值
新建立的視圖
protected abstract View newGroupView (Context context, Cursor cursor, boolean isExpanded, ViewGroup parent)
建立一個新的組視圖並持有組中指向資料的遊標cursor。
參數
context 應用程式內容物件
cursor 擷取資料的遊標對象,它已經移動到正確的位置
isExpanded 該組是否展開狀態
parent 新視圖(View)所依附於的父物件。
傳回值
新建立的視圖