我有一个带有各种标签的应用程序(在tabhost上)。每个选项卡都是一个扩展活动的活动,并且有一些textfields
及其中的内容。
现在,我需要将我的标签放在listview中,但在Android开发人员指南的示例中,您必须扩展ListActivity而不是Activity。
基本上,我需要合并这两个教程:
如何在不延长课程listview
的情况下使用listactivity
?
我的XML文件:
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp"/>
</LinearLayout>
</TabHost>
答案 0 :(得分:18)
几乎一样。基于ListView's tutorial。
而不是:
setListAdapter();
执行以下操作:
<ListView>
Activity
private ListView mListView;
onCreate()
方法上的执行此操作:
mListView = (ListView) findViewById(R.id.your_list_view_id);
mListView.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, COUNTRIES));
我不记得ListActivity
是否提供更多内容。
答案 1 :(得分:5)
您的TabHost也可以包含ListActivity
,因为它继承自Activity
。
但是,如果您想了解如何以任何方式在活动中添加列表视图,请按照这些说明操作。这很简单,制作一个Activity
,在XML中添加Listview
。
使用findViewById()
获取ListView
。