我有一個可工作的expandablelistview代碼,它可以獨立工作。 我有另一個工作代碼滑動選項卡視圖,我分別寫了。片段中的可擴展列表視圖
這些都是通過一些博客,android dev和stackoverflow問題後寫的。
當我嘗試將可擴展列表視圖合併到一個片段中時,最終出現錯誤,我無法解決。
下面是來自片段一塊代碼:
public class Fragment1 extends Fragment {
private static final String NAME = "NAME";
private static final String IS_EVEN = "IS_EVEN";
private ExpandableListAdapter mAdapter;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
List<List<Map<String, String>>> childData = new ArrayList<List<Map<String, String>>>();
for (int i = 0; i < 10; i++) {
Map<String, String> curGroupMap = new HashMap<String, String>();
groupData.add(curGroupMap);
curGroupMap.put(NAME, "Group " + i);
curGroupMap.put(IS_EVEN, (i % 2 == 0) ? "This group is even" : "This group is odd");
List<Map<String, String>> children = new ArrayList<Map<String, String>>();
for (int j = 0; j < 2; j++) {
Map<String, String> curChildMap = new HashMap<String, String>();
children.add(curChildMap);
curChildMap.put(NAME, "Child " + j);
curChildMap.put(IS_EVEN, (j % 2 == 0) ? "This child is even" : "This child is odd");
}
childData.add(children);
}
// Set up our adapter
mAdapter = new SimpleExpandableListAdapter(
getActivity(),
groupData,
android.R.layout.simple_expandable_list_item_1,
new String[] { NAME, IS_EVEN },
new int[] { android.R.id.text1, android.R.id.text2 },
childData,
android.R.layout.simple_expandable_list_item_2,
new String[] { NAME, IS_EVEN },
new int[] { android.R.id.text1, android.R.id.text2 }
);
setListAdapter(mAdapter);
}
}`
總是收到錯誤上的最後一行:「的方法setListAdapter(ExpandableListAdapter)是未定義的類型片段1」。
其餘代碼顯示沒有錯誤。
請幫忙。我該如何糾正這個問題。
可能會對你有所幫助https://gist.github.com/mosabua/1316903 –
謝謝..我試過這個例子,但是我沒有得到任何listview,當我在AVD上運行它時,它給出了一個混合屏幕分段。 – Ramanathan