导航抽屉测试未显示

时间:2018-07-20 14:23:57

标签: android navigation

以阿拉伯文滞后文字添加时出现问题 它从右侧显示 enter image description here

您能帮我解决吗?

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:weightSum="2"
    android:padding="5dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <ImageView
        android:tint="#000"
        android:id="@+id/imgIcon"
        android:layout_width="40dp"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:layout_marginRight="15dp"
        android:layout_marginEnd="15dp"
        android:layout_marginTop="5dp"
        android:layout_marginBottom="5dp" />

    <TextView
        android:id="@+id/txtTitle"
        android:layout_weight="1"
        android:fontFamily="curier"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical"
        android:textSize="17dp"
        android:textColor="#ff0000"
        android:text="@string/app_name"
        android:layout_marginTop="5dp"
        android:layout_marginBottom="5dp" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

android:textDirection =“ locale”

以下链接中提供了此答案:

How to make the text direction from right to left

我没有评论要点。请参考上面的链接即可获得。默认情况下,阿拉伯语文本将从最新版本的右侧显示。这就是原因,阿拉伯语字母总是从右开始。

谢谢