2

Androidアプリでは、画面の下部にあるTextViewにスコアを表示しています。エミュレータには表示されていますが、電話には表示されていません。画面の上部に表示するように変更しましたが、電話では機能しますが、電話では画面の下部に表示する必要があります。

どなたかアイデアをください。

4

4 に答える 4

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 に答える
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 に答える