gpt4 book ai didi

android - 如何让 ConstraintLayout 为 RTL 正常工作?

转载 作者:太空狗 更新时间:2023-10-29 13:12:33 45 4
gpt4 key购买 nike

有人知道为什么当切换到 rtl 时,ConstraintLayout 将所有元素居中吗?

list 中的

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);
}
}

这是 Activity 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

最佳答案

这是我之前报告的一个错误,它在 alpha 6 中得到解决 https://code.google.com/p/android/issues/detail?id=218979

但还有另一个关于 rtl 的错误我需要通过评论来支持它这里 https://code.google.com/p/android/issues/detail?id=220103

更新:开发人员提到第二个 RTL 错误已解决: https://code.google.com/p/android/issues/detail?id=222556

关于android - 如何让 ConstraintLayout 为 RTL 正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38356202/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com