以从右到左的语言更改布局的小部件的位置

时间:2018-07-12 09:35:13

标签: android xml android-layout

我已经为我的应用程序设计了布局,它在使用英语的设备中没有问题,但是当我在使用默认语言(例如波斯语(从右到左))的设备中运行它时,所有小部件的位置都会发生变化(它们位于相反的一侧)屏幕上放置了它们的位置)。是否可以通过任何语言在设备上运行相同的应用程序?

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/backgroundmain"
    tools:context="org.eag.MainActivity">

    <Button
        android:id="@+id/btnQuestions"
        android:layout_width="270dp"
        android:layout_height="70dp"
        android:layout_marginTop="32dp"
        android:background="@drawable/buttonbackground"
        android:text="سوالات رایج خانم های باردار"
        android:textSize="22sp"
        app:layout_constraintStart_toStartOf="@+id/btnWeightGain"
        app:layout_constraintTop_toBottomOf="@+id/btnWeightGain" />

    <Button
        android:id="@+id/btnExit"
        android:layout_width="80dp"
        android:layout_height="48dp"
        android:layout_marginEnd="8dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="100dp"
        android:background="@drawable/buttonbackground"
        android:text="خروج"
        android:textSize="22sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@+id/guideline2"
        app:layout_constraintTop_toBottomOf="@+id/btnQuestions" />

    <android.support.constraint.Guideline
        android:id="@+id/guideline2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_end="583dp" />
</android.support.constraint.ConstraintLayout>

0 个答案:

没有答案