3

rtlに切り替えると、ConstraintLayoutがすべての要素を集中させる理由を誰かが知っていますか?ConstraintLayoutをRTL用に正しく動作させるには?

android:supportsRtl="true"マニフェストに設定されています。

BookShelfActivity.javaは、標準のonCreateオーバーライドが含まれています。ここでは

public class BookShelfActivity extends AppCompatActivity { 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_book_shelf); 
    } 
} 

は、活動のxmlです:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.constraint.ConstraintLayout 
    android:id="@+id/activity_book_shelf" 
    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.hekayh.ereader.BookShelfActivity" 
    android:layout_gravity="start" 
    > 

    <TextView 
     android:text="TextView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:id="@+id/textView5" 
     /> 

    <TextView 
     android:text="AnotherTextView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:gravity="start" 
     android:id="@+id/textView6" 
     app:layout_constraintEnd_toEndOf="@id/textView5" 
     tools:layout_editor_absoluteX="277dp" 
     app:layout_constraintTop_toTopOf="@+id/activity_book_shelf" 
     android:layout_marginTop="42dp"/> 

    <Button 
     android:text="Button" 
     android:layout_width="91dp" 
     android:layout_height="51dp" 
     android:id="@+id/button2" 
     app:layout_constraintStart_toStartOf="@+id/activity_book_shelf" 
     android:layout_marginStart="100dp" 
     app:layout_constraintTop_toBottomOf="@+id/textView6" 
     android:layout_marginTop="24dp" 
     /> 
</android.support.constraint.ConstraintLayout> 

enter image description here

+0

私はそのバグと考えているが。 – zoltish

+0

はい、間違いなくバグですが、制約レイアウトのソースコードを使用して誰かが修正しようとしている可能性があります。* - * – vlozful

+1

最新のcom.android.support.constraint:constraint-layout:1.0.0-alpha6が見つかったようですこれから解放される。 – vlozful

答えて

2

それは私が前に報告され、それはアルファ6 に解決しますバグですhttps://code.google.com/p/android/issues/detail?id=218979

しかし、私はここにコメント https://code.google.com/p/android/issues/detail?id=220103

アップデートでそれをサポートする必要がRTLについては、別のバグがあります: 開発者が第二RTLのバグを解決することを述べた: https://code.google.com/p/android/issues/detail?id=222556

関連する問題