在屏幕上定位textView

时间:2012-01-27 14:17:08

标签: android textview

我想在下面的图片中放置TextView below the red zone,但我可以做到。 enter image description 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 :(得分:0)

您在帖子中提到的所有内容都在一个XML文件中吗?看起来它的格式不好,你的截图也没有说清楚,但我试一试。

看起来你的TextView甚至不在RelativeLayout中。你在声明TextView之前关闭它的标签,所以你必须将它移动到RelativeLayout。 我不知道你是否想在每个Tab中显示这个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"

现在你必须对你的观点做这个......

答案 1 :(得分:0)

您的布局代码似乎没有屏幕截图上的所有内容,因此我不确定您的红色标签集如何工作,但这是一个简单视图的模型:

<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>

这会给你这个:( eclipse截图,小部件中没有标签)

enter image description here