2

背景

我的任务是处理清单中包含的应用程序android:supportsRtl="false"。不知道为什么这样设置,但似乎在某些地方用户可以选择方向。同样在某些情况下它是浮动的(使用系统警报窗口权限)。

问题

我想要一些 ConstraintLayout,我可以在运行时改变它的方向,事实上在这个应用程序中我必须让用户选择方向。

为此,我做了一个小型 POC,结合了我能找到的所有基本案例,以确保所有案例都会受到影响:

<androidx.constraintlayout.widget.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:id="@+id/container"
    android:layout_width="match_parent" android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/textView1" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="bias=0"
        app:layout_constraintBottom_toTopOf="@id/textView2" app:layout_constraintHorizontal_bias="0"
        app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/textView2" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:text="aligned to start alone"
        app:layout_constraintBottom_toTopOf="@id/textView3"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/textView1" />

    <TextView
        android:id="@+id/textView3" android:layout_width="0px" android:layout_height="wrap_content"
        android:text="take whole row" app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/textView2" />

</androidx.constraintlayout.widget.ConstraintLayout>

正如预期的那样,在 LTR 上,它们都向左对齐。

这里的问题是,无论是否尝试更改布局的方向,它似乎只影响前两种情况(如果标志设置为 false,则更糟,因为它不会导致任何事情发生)。

我试过的

首先,我想看看它是如何在不设置android:supportsRtl="false". 我尝试更改 ConstraintLayout 的布局方向,遗憾的是它只影响了 2 个 TextView:

val container = findViewById<ConstraintLayout>(R.id.container)
container.layoutDirection = View.LAYOUT_DIRECTION_RTL

在此处输入图像描述

当将语言环境更改为 RTL 语言时也会发生这种情况(例如希伯来语)。

正如我写的那样,添加标志使它们都好像仍然在 LTR 上:所有都向左对齐。

我也试过打电话container.requestLayout()。它没有帮助。

我只想在这个布局上工作,而不改变其他地方的行为,这可能会导致那里的视觉错误。所以我不想更改标志(我已经注意到当设备的语言环境设置为 RTL 语言时它会导致很多问题)。

问题

  1. 为什么只有 2 个案例会受到方向的影响?我怎么能让另一个人也受到影响?
  2. 即使设置了标志(),我如何强制改变方向android:supportsRtl="false"?我希望它只适用于这种布局(至少现在是这样),并且不影响应用程序的任何地方。
4

0 回答 0