EditText的提示不适用于Android 4.0.4中的阿拉伯语

时间:2019-03-07 12:34:35

标签: android android-edittext arabic hint

当我在android设备(4.0.4)中启动我的应用程序时
我在EditText中看不到阿拉伯语提示

activity_main.xml

<EditText
    android:id="@+id/gradeInput"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="1dp"
    android:layout_marginLeft="1dp"
    android:layout_marginTop="208dp"
    android:layout_marginEnd="1dp"
    android:layout_marginRight="1dp"
    android:layout_marginBottom="478dp"
    android:autofillHints=""
    android:ems="10"
    android:hint="@string/inputHint"
    android:inputType="numberDecimal"
    android:maxLength="5"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:targetApi="o" />

strings.xml

<string name="inputHint">تلميح</string>

我已经在question中阅读了这些答案,但没有任何帮助:(

请帮助我...

2 个答案:

答案 0 :(得分:0)

enter image description here

但是我不知道您的代码。您必须在android中创建一个阿拉伯字符串文件,您可以使用阿拉伯语的提示,并且有一个默认的英语字符串。 因此,在运行应用程序时,请将电话语言更改为阿拉伯语。并且您的字符串将自动工作

将此行添加到清单

   <application
        ...
        android:supportsRtl="true"
        ... >
    </application>

答案 1 :(得分:0)

我找到了解决方法!

要解决此问题,您需要删除inputType属性,它会正常工作。

或者您可以这样做:

<EditText
    ...
    android:inputType="none" />

但是您不能更改inputType属性。

因为您进行了更改,如果提示是阿拉伯语,则提示将为空