2017-11-14 21 views
-3

私のデバイスでアプリケーションを起動すると、すべてのものが右から左に順序付けられますが、エミュレーターで起動すると、そのままになります。私の問題は、私のデバイスの主な言語はヘブライ語です(ヘブライ語は右から左に書く言語です)、エミュレータの言語は英語です。起動時にアプリのアライメントに問題があります

this is how it shows on my device

this is how it is intended to be

私はそれがすべての言語で同じようにしたいです。

レイアウトによる

事前に感謝

<?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" 
tools:context="com.example.mahmood.morsecode.TextToMorse"> 

<EditText 
    android:id="@+id/editText" 
    android:layout_width="0dp" 
    android:layout_height="180dp" 
    android:layout_marginEnd="8dp" 
    android:layout_marginStart="8dp" 
    android:layout_marginTop="8dp" 
    android:ems="10" 
    android:inputType="textMultiLine" 
    app:layout_constraintEnd_toEndOf="parent" 
    app:layout_constraintStart_toStartOf="parent" 
    app:layout_constraintTop_toTopOf="parent" /> 

<EditText 
    android:id="@+id/editText2" 
    android:layout_width="0dp" 
    android:layout_height="180dp" 
    android:layout_marginBottom="80dp" 
    android:layout_marginEnd="8dp" 
    android:layout_marginStart="8dp" 
    android:ems="10" 
    android:inputType="textMultiLine" 
    app:layout_constraintBottom_toBottomOf="parent" 
    app:layout_constraintEnd_toEndOf="parent" 
    app:layout_constraintHorizontal_bias="0.0" 
    app:layout_constraintStart_toStartOf="parent" /> 

<LinearLayout 
    android:layout_width="344dp" 
    android:layout_height="wrap_content" 
    android:layout_marginBottom="8dp" 
    android:layout_marginEnd="8dp" 
    android:layout_marginStart="8dp" 
    android:orientation="horizontal" 
    app:layout_constraintBottom_toBottomOf="parent" 
    app:layout_constraintEnd_toEndOf="parent" 
    app:layout_constraintStart_toStartOf="parent"> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="BackSpace" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="Button" /> 

    <Button 
     android:id="@+id/button7" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="Space" /> 
</LinearLayout> 

</android.support.constraint.ConstraintLayout> 
+0

あなたのコードはどこですか? – kalabalik

+0

コードはまだありませんが、レイアウトに問題があります。 –

+0

私は過去にこの問題を抱えていませんでしたが、Androidスタジオ3.0を入手したときに表示されました(最新のバージョンだと思います) –

答えて

0

にあなたのレイアウトを変更する必要がありそう。デフォルトでは、Androidのメーカーは<application>タグにこの属性を追加します。

android:supportsRtl="true" 

falseへの変更、および言語に基づいてレイアウト方向は無視されます。

ドキュメント:https://developer.android.com/guide/topics/manifest/application-element.html#supportsrtl

+0

これは簡単でした。 ありがとう –

0

行くとleftstartを変更し、right例えばへendlayout_marginStartlayout_marginLeftに変更されています。

あなたAndroidManifest.xmlをチェック

<?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" 
    tools:context="com.example.mahmood.morsecode.TextToMorse"> 

<EditText 
    android:id="@+id/editText" 
    android:layout_width="0dp" 
    android:layout_height="180dp" 
    android:layout_marginRight="8dp" 
    android:layout_marginLeft="8dp" 
    android:layout_marginTop="8dp" 
    android:ems="10" 
    android:inputType="textMultiLine" 
    app:layout_constraintRight_toRightOf="parent" 
    app:layout_constraintLeft_toLeftOf="parent" 
    app:layout_constraintTop_toTopOf="parent" /> 

<EditText 
    android:id="@+id/editText2" 
    android:layout_width="0dp" 
    android:layout_height="180dp" 
    android:layout_marginBottom="80dp" 
    android:layout_marginRight="8dp" 
    android:layout_marginLeft="8dp" 
    android:ems="10" 
    android:inputType="textMultiLine" 
    app:layout_constraintBottom_toBottomOf="parent" 
    app:layout_constraintRight_toRightOf="parent" 
    app:layout_constraintHorizontal_bias="0.0" 
    app:layout_constraintLeft_toLeftOf="parent" /> 

<LinearLayout 
    android:layout_width="344dp" 
    android:layout_height="wrap_content" 
    android:layout_marginBottom="8dp" 
    android:layout_marginRight="8dp" 
    android:layout_marginLeft="8dp" 
    android:orientation="horizontal" 
    app:layout_constraintBottom_toBottomOf="parent" 
    app:layout_constraintRight_toRightOf="parent" 
    app:layout_constraintLeft_toLeftOf="parent"> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="BackSpace" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="Button" /> 

    <Button 
     android:id="@+id/button7" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:text="Space" /> 
</LinearLayout> 

</android.support.constraint.ConstraintLayout> 
+0

これらの変数は受け入れられませんそうです)、あるいは私は正しく入力していません。右の属性に入力してください –

+0

これを試してください。 Android Studio(Ctrl + Rと思う)であなたのXML上で 'Find and Replace'を開き、' Start'を見つけて 'Left'を全て置き換え、' End'を 'Right'に置き換えてください。それが私の言いたいことです。 –

+0

または、私が投稿したバージョンを使用してください。 –

関連する問題