1

我在华为设备上的文本对齐有问题。我的文本小部件具有正确的文本对齐(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.

1 - 带有 android:layout_width="match_parent" 和 android:gravity="end" 的文本视图,2 - 带有 wrap_content 的文本视图

也许你知道如何修复它?

我想要标准的开始 - 左/结束 - 右重力

谢谢!

截屏

4

1 回答 1

0

解决方案成立!华为有奇怪的行为,当我设置默认语言环境时(它启用了强制 RTL)

于 2017-08-01T06:56:57.187 回答