在Android中显示屏幕的TextView底部

时间:2011-04-21 12:14:15

标签: android layout textview

在我的申请中, 我想在屏幕顶部显示一个带有屏幕宽度的TextView。接下来要在TextView下面显示图形视图。接下来在图形视图下方显示一个文本视图。

我使用了以下xml代码。在我的代码中,TextView无法显示在screeen的底部。

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

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView  
android:orientation="horizontal"
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="@string/hello"
android:background="#FF8A11"
android:padding="8dip"
/>
</LinearLayout>



<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<com.game.viewdot.ViewDot
 android:id="@+id/DrawView"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 />   
 </LinearLayout>



 <LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="bottom"
android:layout_gravity="bottom"  
>

<TextView  

android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="Another Text View"
android:background="#FF8A11"
android:padding="8dip"
android:gravity="bottom"
 android:layout_gravity="bottom"
/>

</LinearLayout>

我想在此代码中进行哪些修改以获得我的结果??????

4 个答案:

答案 0 :(得分:13)

试试这个

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

<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/ContentView"
android:layout_gravity="bottom" android:layout_alignParentBottom="true"/>

</RelativeLayout>

答案 1 :(得分:8)

不使用LinearLayout作为父布局,而是使用相对布局。 尝试使用以下代码

 <?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"
        android:id="@+id/relative01"
        >
    <TextView  
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/hello"
        android:background="#FF8A11" 
        android:padding="8dip"
        android:id="@+id/textView01"
        />
        <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/textView01"
    >
    <com.game.viewdot.ViewDot
 android:id="@+id/DrawView"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 />   
     </LinearLayout>



     <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true"
    >

    <TextView  

    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="Another Text View"
    android:background="#FF8A11"
    android:padding="8dip"

    />

    </LinearLayout>

    </RelativeLayout>

希望这会对你有所帮助...... :)

答案 2 :(得分:0)

设置所有线性布局高度

android:layout_height="fill_parent"

答案 3 :(得分:0)

为所有View设置android:layout_height =“fill_parent”属性期待TextView ....