プログラムで変更する方法についての解決策は知っていますが、テキストをXMLで設定したいと思います。どうやってそれをしますか?私はここを見ました: http://developer.Android.com/reference/Android/widget/TabHost.html しかし、解決策が見つかりませんでした。
どうですか..。
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:paddingBottom="@dimen/activity_vertical_margin"
Android:paddingLeft="@dimen/activity_horizontal_margin"
Android:paddingRight="@dimen/activity_horizontal_margin"
Android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TabHost
Android:id="@Android: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">
<TabWidget
Android:id="@Android:id/tabs"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content">
<TextView
Android:tag="tab0"
Android:text="Tab 1"
Android:background="@Android:drawable/btn_star_big_on"
Android:layout_width="wrap_content"
Android:layout_height="fill_parent"
/>
<TextView
Android:tag="tab1"
Android:text="Tab 2"
Android:layout_width="wrap_content"
Android:layout_height="fill_parent"
/>
<TextView
Android:tag="tab2"
Android:text="Tab 3"
Android:layout_width="wrap_content"
Android:layout_height="fill_parent"
/>
</TabWidget>
<FrameLayout
Android:id="@Android:id/tabcontent"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent">
<TextView
Android:text="Hallo1"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent" />
<TextView
Android:text="Hallo2"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent" />
<TextView
Android:text="Hallo3"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent" />
</FrameLayout>
</LinearLayout>
</TabHost>
</RelativeLayout>
このようにすると、次のようになります。
完全なタブサンプルをチェックしてください ここ 。
これがお役に立てば幸いです....乾杯!
いつでも@ + id/tab1に移動して、タブを呼び出したいものに変更できます。したがって、「About」と呼びたい場合は、特定のタブの線形レイアウトで@ + id/Aboutに変更するだけです。