当我运行App - android studio时,小部件反转

时间:2016-07-11 18:24:46

标签: android android-studio

我使用android studio和GUI Designer

当我运行应用程序时,我在左侧看到TextView,但我将其放在GUI Designer中与ImageView相同

In GUI Designer

In mobile (I've tried 2 devices with diff System Versions)

public class MyCaseController {

    public list<Case> cases {get;set;}

    public MyCaseController(){
        cases  = [select id, accountid, CaseNumber, OwnerId from case];
    }
}

这个GridLayout也反过来了!

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1">
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageView"
    android:src="@drawable/celebi"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:contentDescription="@string/celebi_picture" />
<TextView
    android:id="@+id/txt_detail"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:textSize="18sp"
    android:textStyle="bold"
    android:textColor="#000000"
    android:layout_marginRight="10dp"
    android:layout_marginLeft="10dp"
    android:layout_alignParentTop="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_toEndOf="@+id/imageView"
    android:layout_alignBottom="@+id/imageView"
    android:layout_toRightOf="@+id/imageView" />

这个LinearLayout同样的事情:

<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:id="@+id/txt_detail"
    android:layout_row="0"
    android:layout_column="1" />

<ImageView
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:id="@+id/imageView"
    android:layout_row="0"
    android:layout_column="2"
    android:src="@mipmap/ic_launcher" />

3 个答案:

答案 0 :(得分:1)

您正在使用layout_alignParentRightlayout_alignParentEnd。这些在不同版本的Android上可能会有所不同,因为旧版本不支持RTL语言。它也会根据设备上设置的语言是否为RTL而改变。

- =编辑= -

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:src="@drawable/celebi"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:contentDescription="@string/celebi_picture" />

    <TextView
        android:id="@+id/txt_detail"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textSize="18sp"
        android:textStyle="bold"
        android:textColor="#000000"
        android:layout_marginRight="10dp"
        android:layout_marginLeft="10dp"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_toRightOf="@+id/imageView" />
</RelativeLayout>

答案 1 :(得分:0)

替换此代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:id="@+id/imageView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentTop="true"
    android:contentDescription="@string/app_name"
    android:src="@mipmap/ic_launcher" />

<TextView
    android:id="@+id/txt_detail"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentEnd="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_toEndOf="@+id/imageView"
    android:layout_toRightOf="@+id/imageView"
    android:text="asfsksdgk"
    android:textColor="#000000"
    android:textSize="18sp"
    android:textStyle="bold" />

答案 2 :(得分:0)

在Androidmanifest.xml中写下这一行

<application
    android:supportsRtl="true"/>

这适合我。