android – ConstraintLayout中的指南是否支持RTL

前端之家收集整理的这篇文章主要介绍了android – ConstraintLayout中的指南是否支持RTL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
ConstraintLayout中的指南是否支持RTL?
我正在创建一个视图,其右侧有个人资料图片用户信息.我希望图片占用宽度的30%,而用户名和细节占70%.这是指南的有效用例吗?我知道其他实现,但我想知道是否可以在这里使用指南.
我面临的问题是,在将设备语言更改为RTL语言后,指南仍保留在左侧的位置

screenshot

这是xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7.  
  8. <ImageView
  9. android:id="@+id/imageView"
  10. android:layout_width="80dp"
  11. android:layout_height="80dp"
  12. android:layout_marginStart="16dp"
  13. android:layout_marginTop="16dp"
  14. android:background="@color/colorPrimary"
  15. app:layout_constraintStart_toStartOf="parent"
  16. app:layout_constraintTop_toTopOf="parent" />
  17.  
  18. <TextView
  19. android:id="@+id/textView5"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:textSize="24sp"
  23. tools:text="Full Name"
  24. app:layout_constraintTop_toTopOf="@+id/imageView"
  25. app:layout_constraintStart_toEndOf="@+id/guideline2" />
  26.  
  27. <TextView
  28. android:id="@+id/textView6"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:textSize="14sp"
  32. tools:text="Android Developer"
  33. app:layout_constraintBottom_toBottomOf="@+id/imageView"
  34. app:layout_constraintStart_toEndOf="@+id/guideline2" />
  35.  
  36. <android.support.constraint.Guideline
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:id="@+id/guideline2"
  40. android:orientation="vertical"
  41. app:layout_constraintGuide_percent="0.30" />
  42.  
  43.  
  44. </android.support.constraint.ConstraintLayout>

解决方法

**更新**此问题上的 bug现已标记为已修复.
**结束更新**

似乎Android团队错过了这个问题.

百分比仅从左侧计算.

因此,为了支持RTL,您可以在values / dimens.xml中声明一个常量,例如:

  1. <resources>
  2. <item name="my_percent" format="float" type="dimen">0.3</item>
  3. </resources>

并使用其值为ldrtl / dimens.xml文件中的100-mypercent覆盖此值.

  1. <resources>
  2. <item name="my_percent" format="float" type="dimen">0.7</item>
  3. </resources>

用它:

  1. <android.support.constraint.Guideline
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:id="@+id/guideline2"
  5. android:orientation="vertical"
  6. app:layout_constraintGuide_percent="@dimen/my_percent" />

>如果您希望为RTL重新编写完整的布局版本,则可以跳过声明维度,并使用layout-ldrtl /目录作为RTL版本.

猜你在找的Android相关文章