目前我在简单的Android应用程序中工作,使用Tabhost创建三个选项卡,第一个选项卡使用RelativeLayout创建ListView,但ListView不可见,所以我尝试为ListView设置背景颜色(白色),只显示白色ListView 未显示,但结果相同,所以请帮助我,如何在 Android 的 Tabbar 中设置列表视图。
提前致谢
我试过这个
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_alignParentBottom = "true"
android:layout_height="wrap_content"
/>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="200dip" >
<ListView
android:id="@+id/edittext01"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:background="#ffff"
android:paddingTop="10px" />
</RelativeLayout>