我已经创建了一个TabHost,并为标签分配了4个活动意图,这些似乎工作正常。我唯一的问题是活动内容没有显示在我的tabhost视图中的framelayout #tabcontent中。
我已按照官方参考资料扫描互联网寻求解决方案,但我无法查看问题所在。
Log.v(" Activity"," Reports")以ant身份登录,因此它会执行活动。因此,我猜测我的ReportsActivity中的setContentView()是导致问题的原因。但我是新手,所以我无法说出来。 (没有生成的错误)
这是我的tabhost
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabhost"
android:background="#FFFFFF">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5sp"
android:layout_weight="1" />
</LinearLayout>
</TabHost>
这就是我在TabActivity中添加标签的方法
// Glob
Intent intent;
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
Resources res = getResources();
// Reports tab
intent = new Intent().setClass(this, ReportsActivity.class);
spec = tabHost.newTabSpec("reports")
.setIndicator(
res.getText(R.string.reports),
res.getDrawable(R.drawable.reports))
.setContent(intent);
tabHost.addTab(spec);
这是我的内容活动(R.layout.reports =带有textview的linearlayout)
public class ReportsActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.reports);
Log.v("Activity", "Reports");
}
}
答案 0 :(得分:0)
尝试按照以下方式实施TabSpec:
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
spec = tabHost.newTabSpec("reports")
.setIndicator(
res.getText(R.string.reports),
res.getDrawable(R.drawable.reports))
.setContent(intent);
答案 1 :(得分:0)
这是因为您选择了一个默认为水平布局的LinearLayout。 如果你在LinearLayout标签内设置了android:orientation =“vertical”来修复你的问题