0
私はこのようなTabHost/TabWidgetとレイアウトを持っている:レイアウトをTabWidgetと重ならないようにする方法は?
青いボックスがでframeLayoutです。 FrameLayout内にRelativeLayoutがあります。 RelativeLayoutはwidth/heightのfill_parentにあり、FrameLayoutはfill_parentの幅と445dpの高さです。これは、Parentの下部からTabWidgetの下部までの高さであるためです。
FrameLayoutを常にになるように設定するにはどうすればよいですか?(私はそれはそれはで表示されていますどんなDPI /画面サイズに合わせてサイズを変更する必要があります)
のxml:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
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" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="445dp"
android:layout_gravity="bottom" >
<RelativeLayout
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom" >
</RelativeLayout>
</FrameLayout>
</TabHost>
が働いていたこと、ありがとう。 – Cole