とアンドロイド。 このレイアウトのTABアイコン(TabWidget)が画面上に表示されないという問題があります。私はそれがフレームレイアウトのfill_parentのためだと思います。 私はそれが ボタン タブ TabWidgetTabhostは、私は次のようなレイアウトを持っている固定ヘッダ
ようにする必要があります(それは他の機器で使用するために良いではありませんので...)しかし、私はがどのように修正することができ、固定サイズを定義する必要はありません
編集:私は問題を発見した 、新しいXMLは、この程度
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/show_recipe_bg">
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/saveRecipeButtonId"
android:text="@string/save_recipe_button"
android:layout_gravity="center" />
<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="5dp" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" />
</LinearLayout>
</TabHost>
</LinearLayout>
Hmmmmmはそれについて考えなかった - 試してみる。ありがとう – Yoav
まだ良くありません - TABSは画面の裏にあるので消えます。 – Yoav