Bootstrap

Android Studio 警告信息:Use start instead of left to ensure...

问题描述与处理策略

1、问题描述
  • 这个警告信息是关于用户界面设计在本地化中的影响
<ImageView
    android:id="@+id/iv_back"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="left|center"
    android:src="@mipmap/btn_fh" />
  1. 对于 android:layout_gravity="left|center",会有如下的警告信息
Use "start" instead of "left" to ensure correct behavior in right-to-left locales
  1. 类似的,如果写成,android:layout_gravity="right|center",会有如下的警告信息
Use "end" instead of "right" to ensure correct behavior in right-to-left locales 
2、处理策略
  1. 将 left 修改为 start,例如,android:layout_gravity="start|center"

  2. 将 right 修改为 end,例如,android:layout_gravity="right|center"


学习补充

1、LTR 与 RTL
  1. LTR(Left-to-Right)代表从左到右的书写和阅读方向,这是大多数西方语言(例如,英语、法语、西班牙语、德语等)的书写方式

  2. RTL(Right-to-Left)代表从右到左的书写和阅读方向,这是某些东方语言(例如,阿拉伯语、希伯来语、波斯语等)的书写方式

2、LTR 与 RTL 在 UI 设计中的考虑
  1. 如果在 UI 设计中直接使用【左】和【右】来指示位置或方向,那么在 RTL 语言环境中,这些指示可能会变得混乱或误导用户

  2. 推荐使用【开始】和【结束】,它们不依赖于特定的阅读或书写方向,例如,在 RTL 环境中,【开始】对应于【右】,【结束】对应于【左】

;