Привет, люди там ..
Я работаю над созданием приложения с вкладкой, в которой на одной из вкладок встроено отображение карты.Но я хочу, чтобы представление табуляции находилось внизу, а не сверху, когда я установил для gravity или layout_marginBottom значение true, оно разочаровывает и больше не отображается на экране.
Вот 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" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/emptylayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" />
</FrameLayout>
</LinearLayout>
</TabHost>
Есть идеи, как получить вкладки снизу и по-прежнему видны ??