我已经看过两个这样的问题,但他们没有答案。
有人说:you should build TabHost at Runtime.
我认为这不是答案。那么如果应该从代码初始化XML设计的目的是什么呢。
所以,我的问题仍然是一样的:
这是一些TabHost的XML设计
<?xml version="1.0" encoding="utf-8"?>
<TabHost
android:id="@+id/tabHost"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/tab0"
android:orientation="vertical"
android:background="@color/controlDarkDark"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:visibility="visible">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button on Tab0" />
</LinearLayout>>
<LinearLayout
android:id="@+id/tab1"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button on Tab1" />
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
我简化了结构,但仍然在运行时我得到了屏幕(见图)。和查询
TabHost tabHost = (TabHost)findViewById(R.id.tabHost);
&#13;
答案 0 :(得分:2)
试试这个。
在xml的根目录中。
添加LinearLayout
。
然后添加您的代码。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tab_host);
TabHost mTabHost = (TabHost) findViewById(R.id.tabs);
mTabHost.setup();
mTabHost.addTab(mTabHost.newTabSpec("tab0").setIndicator("title1", null).setContent(R.id.button1));
mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator("title2", null).setContent(R.id.button2));
}
注意强>
如果您的xml代码运行良好,则编辑了正确的xml代码。
Android Studio完全基于您编写的XML的粗略呈现。
Android Studio预览界面与实际界面并不完全相同,不同之处在于Android Studio对实际界面效果的复制偏差。
不同的主题显示了不同的观点。
但是在活动中,您必须编写正确的代码并在其中显示。