我在 HUAWEI 设备上的文本对齐方面遇到了问题。
我的文本小部件具有正确的文本对齐(with android:gravity="start")
申请标签:
<application
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:allowBackup="true"
android:name=".ShopApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
/>
TextView XML(例如)
<TextView
android:id="@+id/tv_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="start"
android:text="23.000.000.097"
android:textColor="@color/background"
android:textSize="30sp"/>
应用主题:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/primary_text_color</item>
<item name="colorPrimaryDark">@color/background</item>
<item name="colorAccent">@color/accent_red_color</item>
<item name="colorControlNormal">@android:color/white</item>
</style>
当我设置重力END时 - 文本显示在TextView
的左侧。
也许你知道如何解决它?
我希望有标准开始 - 左/右 - 右重力
THX!
答案 0 :(得分:0)
解决方案成立! 华为有奇怪的行为,当我设置默认语言环境时(启用强制RTL) 当我设置语言区域设置(美国,RU,ZH等)时,而不是“默认” - 禁用RTL