2

在 android 应用程序中,我已在屏幕底部的 TextView 中显示分数,它已显示在模拟器中但未显示在手机中。我更改为显示在屏幕顶部,它可以在手机中使用,但我需要在手机屏幕底部显示。

请任何人提供想法?

4

4 回答 4

1

你试过ALIGN_PARENT_BOTTOM吗?请注意,这仅适用于RelativeLayout.

于 2012-07-27T06:52:35.597 回答
1
<?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:background="@drawable/bg_iphone" >

   <TextView
            android:id="@+id/txtDate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" />

</RelativeLayout>
于 2012-07-27T06:55:26.023 回答
1

下面是一个RelativeLayout用于将文本定位在显示屏顶部、中间和底部的示例。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_alignParentTop="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />        
</RelativeLayout>
于 2012-07-27T06:56:17.323 回答
1

使用属性 align_parent_bottom 尝试此代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    android:text="@string/hello_world"
    tools:context=".MainActivity" />  

</RelativeLayout>
于 2012-07-27T07:15:53.023 回答