我必須根據自己的XML描述佈局一些標籤,但是當我試圖設置選項卡的內容,我得到了這樣的結果:的Android:佈局不會出現標籤內容
http://img266.imageshack.us/img266/1787/appnavihist.jpg
(白帶有文本的字段是home.xml佈局的一部分)。下面是一些代碼:
TabSpec spec = tabHost.newTabSpec("home").setIndicator("Home").setContent(R.id.LinearLayout_home);
tabHost.addTab(spec);
的main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout_root"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</TabWidget>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include layout="@layout/home"/>
</FrameLayout>
</LinearLayout>
守則要求看起來不錯。可以發佈xml佈局的內容? – 2010-11-01 09:39:30
當然..(主)http://pastie.org/1263646(主頁)http://pastie.org/1263648 – polyakovsky 2010-11-01 10:06:28
下一次嘗試直接粘貼所有相關的東西到stackoverflow,使其他用戶更容易找到真相:) – 2010-11-01 11:04:07