我有一个关于android tabactivity的问题。 我只使用一个.java和两个.xml文件来尝试开发一个简单的选项卡视图,但它失败了:(
这是我的Main.java
public class Main extends TabActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TabHost tabHost = getTabHost();
tabHost.addTab(tabHost.newTabSpec("page1").setIndicator("Page1").setContent(R.id.view1));
tabHost.setCurrentTab(0);
}
}
这是main.xml
<?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">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@+id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@+id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
这是abc.xml(包含view1)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/view1">
<TextView android:text="ABC"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
你可以帮我查一下这些代码吗? :(
非常感谢。
答案 0 :(得分:1)
您的id / view1 LinearLayout必须是id / tabcontent FrameLayout的子级。