2

私は aTextViewと 3Buttonsを a の中央に配置しておりRelativeLayout、これら 3 つすべてのテキストは、親の中央を左端の行として左揃えになっています。

、 、およびレイアウトgravityを変更しようとしましたが、何も機能せず、Android がこのようにテキストを整列させるのを見たことがないので困惑しています。TextViewButtons

Buttonテキストをそれぞれの中央に配置Buttonし、上部のテキストを中央揃えにします。

それがどのように見えるかの画像はここにあります: http://i.stack.imgur.com/9lHEd.png

ここに私のxmlがあります:

    <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:id="@+id/textView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_margin="20dp"
    android:gravity="center_horizontal"
    android:text="@string/greeting"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<Button
    android:id="@+id/startQuizButton"
    android:layout_width="280dp"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_centerHorizontal="true"
    android:onClick="@string/startQuiz"
    android:text="@string/start_quiz" />

<Button
    android:id="@+id/lessonsButton"
    android:layout_width="280dp"
    android:layout_height="wrap_content"
    android:layout_below="@+id/startQuizButton"
    android:layout_centerHorizontal="true"
    android:onClick="@string/startLesson"
    android:text="@string/lessonsString" />

<Button
    android:id="@+id/viewAllButton"
    android:layout_width="280dp"
    android:layout_height="wrap_content"
    android:layout_below="@+id/lessonsButton"
    android:layout_centerHorizontal="true"
    android:onClick="@string/showAll"
    android:text="@string/view_all" />

4

4 に答える 4

6

RelativeLayout親レイアウトとして持っているため、を含めました。ただし、それが必要かどうかはわかりません。次のコードが探しているものかどうかを確認してください。

<?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:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:text="Greetings" />

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Start Quiz" />

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Lessons" />

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="View all questions" />
    </LinearLayout>

</RelativeLayout>

ここに画像の説明を入力

于 2012-08-06T14:48:15.990 に答える
2

ボタンタブ android:gravity="center" に追加...動作するかどうかを確認..

于 2012-08-06T14:47:28.757 に答える
0

テキストを中央揃えにしたい場合は、次のようにすることもできます。

    <TextView
    android:text="Quantity"
    android:textSize="34sp"
    android:textColor="#ffffff"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:fontFamily="sans-serif-light"
    android:layout_centerHorizontal="true"
    android:paddingTop="10dp"/>

ここでandroid:layout_centerHorizontal="true"、true または false のブール値を取るものを使用して水平に変更しました。true にすることで、自動的にすべてのデバイスの中央に配置されます。

于 2015-07-07T14:45:50.380 に答える