позиционировать текстовое представление на экране - PullRequest
0 голосов
/ 27 января 2012

Я хочу разместить TextView below the red zone на следующем изображении, но я просто могу это сделать. введите описание изображения http://i43.tinypic.com/cm93s.png

До сих пор у меня есть следующий макет:

<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tabhost1"
xmlns:android="http://schemas.android.com/apk/res/android"
>

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<TabWidget
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@android:id/tabs"
android:layout_alignParentBottom="true"
/>

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

<LinearLayout android:layout_width="fill_parent"
android:layout_below="@id/layout"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="0 restaurant trouves"
android:gravity="center_horizontal"
android:layout_alignParentBottom="true"
android:textSize="15dip"
android:textColor="#000000"
/>     
</LinearLayout>   

Может кто-нибудь сказать, что является правильным кодом для размещения textView под красной вкладкой?Спасибо!

Ответы [ 2 ]

0 голосов
/ 27 января 2012

у вашего кода макета, кажется, нет всего, что есть на скриншоте, поэтому я не уверен, как работает ваш красный набор вкладок, но вот макет с простым представлением:

<RelativeLayout
    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"
        android:layout_alignParentBottom="true" />

    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@android:id/tabs"
        android:layout_centerHorizontal="true"
        android:background="#FFFFFF"
        android:gravity="center_horizontal"
        android:text="0 restaurant trouves"
        android:textColor="#000000"
        android:textSize="15dip" />

    <View
        android:layout_width="fill_parent"
        android:layout_height="50dp"
        android:layout_above="@+id/text"
        android:background="#ff0000" />

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

Это даст вам следующее: (скриншот затмения, в виджете нет вкладок)

enter image description here

0 голосов
/ 27 января 2012

Все ли вы упомянули в своем посте в одном XML-файле? Похоже, что он не очень хорошо отформатирован, и ваш скриншот тоже не ясно, но я попробую.

Кажется, что ваш TextView даже не находится внутри RelativeLayout. Вы закрываете его тег перед объявлением своего TextView, поэтому вам нужно переместить его в RelativeLayout. И я не знаю, хотите ли вы показать этот TextView на каждой вкладке. Но если это так, вы можете попробовать следующую схему:

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

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

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" >
            </TabWidget>

            <RelativeLayout
                android:id="@+id/relativeLayout1"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <TextView
                    android:id="@+id/textView1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerHorizontal="true"
                    android:layout_centerVertical="true"
                    android:text="TextView" />

               <TextView
                    android:id="@+id/textView2"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/textView1"
                    android:text="TextView" />
            </RelativeLayout>

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

                <LinearLayout
                    android:id="@+id/tab1"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >

                </LinearLayout>

                <LinearLayout
                    android:id="@+id/tab2"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>

                <LinearLayout
                    android:id="@+id/tab3"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" >
                </LinearLayout>
            </FrameLayout>

        </LinearLayout>
    </TabHost>

</LinearLayout>

В этом примере есть два TextView. Один отцентрирован, а другой нарисован ниже первого с: android:layout_below="@id/textView1".

Теперь вы должны сделать это со своими представлениями ...

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...