0

「20」が含まれるテキスト ボックスに関して、右側のレイアウトを左側のレイアウトと一致させたいと思います。左側のものは私が望む場所ですが、右側のものは正しく配置されません。また、20 の上の右上隅に小さなスピナーを配置したいと思います

ここに画像の説明を入力

<?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="horizontal" >

<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.0"
android:orientation="vertical" >

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="2"
    android:gravity="center" >

    <TextView
        android:id="@+id/history1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="98dp"
        android:text="This is where life histroy goes" />

    <EditText
        android:id="@+id/playerLifeOne"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="49dp"
        android:gravity="center"
        android:inputType="number"
        android:minWidth="120dp"
        android:text="20"
        android:textSize="40dp" />

</RelativeLayout>

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal" >

   <Button
       android:id="@+id/badd1"
       android:layout_width="78dp"
       android:layout_height="wrap_content"
       android:text="+1" />

        <Button
            android:id="@+id/badd5"
           android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="+5" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/bsub1"
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="-1" />

        <Button
            android:id="@+id/bsub5"
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="-5" />
    </LinearLayout>
</LinearLayout>
</LinearLayout>

<LinearLayout
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@android:color/black" />

<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.0"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_weight="2"
    android:gravity="center" >

    <EditText
        android:id="@+id/playerLifeTwo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="0dp"
        android:gravity="center"
        android:inputType="number"
        android:minWidth="120dp"
        android:text="20"
        android:textSize="40dp" >

        <requestFocus />
    </EditText>

 </LinearLayout>

 <LinearLayout
    android:layout_width="156dp"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/b2add1"
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="+1" />

        <Button
            android:id="@+id/b2add5"
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="+5" />
    </LinearLayout>

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

        <Button
            android:id="@+id/b2sub1"
           android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="-1" />

        <Button
            android:id="@+id/b2sub5"
            android:layout_width="78dp"
            android:layout_height="wrap_content"
            android:text="-5" />

    </LinearLayout>
 </LinearLayout>
 </LinearLayout>

</LinearLayout>
4

2 に答える 2

0

これは私にとってはうまくいきます。#2 を #1 に合わせて変更します。

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="2" >

        <EditText
            android:id="@+id/playerLifeTwo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="49dp"
            android:gravity="center"
            android:inputType="number"
            android:minWidth="120dp"
            android:text="20"
            android:textSize="40dp" />
    </RelativeLayout>
于 2013-11-05T21:34:38.593 に答える
-1

下の画像のようなものを探している場合は、(変更した) レイアウトを使用できます。

ここに画像の説明を入力

<?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="horizontal" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:orientation="vertical" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="2"
            android:gravity="center" >

            <TextView
                android:id="@+id/history1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentBottom="true"
                android:layout_centerHorizontal="true"
                android:layout_marginBottom="98dp"
                android:text="This is where life histroy goes" />

            <EditText
                android:id="@+id/playerLifeOne"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="49dp"
                android:gravity="center"
                android:inputType="number"
                android:minWidth="120dp"
                android:text="20"
                android:textSize="40dp" />
        </RelativeLayout>

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

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="horizontal" >

                <Button
                    android:id="@+id/badd1"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="+1" />

                <Button
                    android:id="@+id/badd5"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="+5" />
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="horizontal" >

                <Button
                    android:id="@+id/bsub1"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="-1" />

                <Button
                    android:id="@+id/bsub5"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="-5" />
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:layout_width="1dp"
        android:layout_height="match_parent"
        android:background="@android:color/black" />

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1.0"
        android:orientation="vertical" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="2"
            android:gravity="top" >

            <EditText
                android:id="@+id/playerLifeTwo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentTop="true"
                android:layout_centerHorizontal="true"
                android:layout_marginTop="49dp"
                android:gravity="center"
                android:inputType="number"
                android:minWidth="120dp"
                android:text="20"
                android:textSize="40dp" >
                <requestFocus />
                </EditText>
                <Spinner 
                    android:id="@+id/spinner"
                    android:layout_alignParentTop="true"
                    android:layout_alignParentRight="true"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"/>
        </RelativeLayout>

        <LinearLayout
            android:layout_width="156dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="horizontal" >

                <Button
                    android:id="@+id/b2add1"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="+1" />

                <Button
                    android:id="@+id/b2add5"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="+5" />
            </LinearLayout>

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

                <Button
                    android:id="@+id/b2sub1"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="-1" />

                <Button
                    android:id="@+id/b2sub5"
                    android:layout_width="78dp"
                    android:layout_height="wrap_content"
                    android:text="-5" />
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

</LinearLayout>
于 2013-11-05T21:36:06.003 に答える