1

私が試みているこの最初のアプリの Java は問題ありません。しかし、XML にはまだ少し戸惑います。私が達成しようとしているものの写真を含めました: ここに画像の説明を入力

そして、これが私がこれまでに持っているコードです。出来上がりには満足しているが、前半を逆にする方法を知りたいだけだ:

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

    <LinearLayout
        android:id="@+id/opponent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="bottom"
        android:layout_weight="1"
        android:clickable="false" >

        <RelativeLayout
            android:id="@+id/opPlus"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_weight="0.5"
            android:clickable="true" >

        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/opMinus"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_weight="0.5"
            android:clickable="true" >

        </RelativeLayout>

    </LinearLayout>

    <LinearLayout
        android:id="@+id/player"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="bottom"
        android:layout_weight="1"
        android:clickable="false" >

        <RelativeLayout
            android:id="@+id/plPlus"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_weight="0.5"
            android:clickable="true" >

        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/plMinus"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_weight="0.5"
            android:clickable="true" >

        </RelativeLayout>

    </LinearLayout>

みなさん、よろしくお願いします!

4

1 に答える 1

3

追加するだけです:

android:rotation="180"

回転させたいビューまたはビューグループに。この場合、LinearLayoutID の@+id/opponent

編集: 例:

<?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="vertical"
  >
  <RelativeLayout
    android:id="@+id/opponent"
    android:rotation="180"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:background="#FF8833"
    >
    <View
      android:id="@+id/emptyview"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_centerInParent="true"
      />
    <Button
      android:layout_height="50dp"
      android:layout_width="match_parent"
      android:layout_toLeftOf="@id/emptyview"
      android:layout_alignParentBottom="true"
      android:background="#999999"
      android:text="Button 1"
      />
    <Button
        android:layout_height="50dp"
        android:layout_width="match_parent"
        android:layout_toRightOf="@id/emptyview"
        android:layout_alignParentBottom="true"
        android:background="#888888"
        android:text="Button 2"
        />
  </RelativeLayout>
  <RelativeLayout
      android:id="@+id/opponent"
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_weight="1"
      android:background="#33FF33"
      >
    <View
        android:id="@+id/emptyview"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_centerInParent="true"
        />
    <Button
        android:layout_height="50dp"
        android:layout_width="match_parent"
        android:layout_toLeftOf="@id/emptyview"
        android:layout_alignParentBottom="true"
        android:background="#999999"
        android:text="Button 1"
        />
    <Button
        android:layout_height="50dp"
        android:layout_width="match_parent"
        android:layout_toRightOf="@id/emptyview"
        android:layout_alignParentBottom="true"
        android:background="#888888"
        android:text="Button 2"
        />
  </RelativeLayout>
</LinearLayout>

結果:

ここに画像の説明を入力

于 2012-08-26T23:23:24.863 に答える