Android: добавление представления под TabActivity - PullRequest
0 голосов
/ 23 января 2011

Итак, у меня есть вкладка с 2 вкладками. Под этим я хотел бы иметь второе представление. В данный момент я могу поставить вид в конец, но он все равно перекрывается с тем, что находится в конце видимой в данный момент вкладки. У кого-нибудь есть идеи, как получить второе представление под вкладками, а не перекрывать конец их содержимого?

Так, например, если представление - это просто текстовое представление, мой макет выглядит следующим образом:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">

    <TabHost android:id="@android:id/tabhost" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

        <LinearLayout android:id="@+id/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" />

            <FrameLayout android:id="@android:id/tabcontent"
                android:layout_width="fill_parent" 
                android:layout_height="fill_parent"/>

        </LinearLayout>
    </TabHost>

    <RelativeLayout android:id="@+id/InnerRelativeLayout" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true">

        <TextView android:id="@+id/EndView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="At the end of the screen"/>

        </RelativeLayout>
</RelativeLayout>

1 Ответ

0 голосов
/ 23 января 2011

Использование android:below="@id/tabhost":

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent">
    <TabHost ...>
        ...
    </TabHost>

    <RelativeLayout android:id="@+id/InnerRelativeLayout" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:below="@id/tabhost"><!-- LOOK HERE  -->

        <TextView android:id="@+id/EndView"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="At the end of the screen"/>

        </RelativeLayout>
</RelativeLayout>
...