2017-06-30 14 views
-2

私は画面に4つのタブの下をデザインしたいのですが、私の問題はタブが画面の下に隠れていることです。しかし、空のアクティビティではタブが表示されます。画像を参照してください。 this image is showing tabs with and without activityボトムタブが隠されています

here is my code, xml and java

+1

<TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="match_parent" android:layout_height="wrap_content"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <TabWidget android:id="@android:id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" /> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@android:id/tabs" android:layout_alignParentTop="true" /> </RelativeLayout> </TabHost> 
?あなたが上下にスクロールすると再び見えるようになっていますか? –

+0

詳細を記入して問題を説明してください。 –

+0

はい@PareshMayaniに同意します –

答えて

0

でframeLayout

にプロパティ android:layout_above="@id/tabs"を設定してみてください

編集:

それは常に隠され
+0

いいえ、動作しません。 –

+0

@NehaSingh編集された回答を確認してください。 – Shrikant

関連する問題