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"

到要旋转的视图或视图组。在这种情况下,LinearLayout具有 id 的@+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 回答