如何在android:数字上允许空格

时间:2016-08-06 11:36:32

标签: android

我在Android Edittext上限制如下

机器人:位数= “abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ” 但不能进入空间。如何让它允许空格?这可能只能通过.xml获取吗?

4 个答案:

答案 0 :(得分:9)

试试这个,希望它有所帮助,

android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ " 

答案 1 :(得分:1)

Edittext 数字只有在给出字符的空格结尾时才接受空格,看看:

android:digits="abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ" 

快乐的编码!!

答案 2 :(得分:0)

  1. 在数字字符串末尾包含空格(“”)
      

    “abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ”

  2.  var link = document.createElement("a");
        document.body.appendChild(link);
        link.download = initCaps(obj.tableId) + '.csv';
        link.href = event.data;
        link.click();
        link.remove();
    

答案 3 :(得分:0)

<string name="digits_text">abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789@$%^*()_+-{},./\|&amp; </string>

<android.support.design.widget.TextInputLayout
    android:id="@+id/textinputlayout_support_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toBottomOf="@+id/textview_or">
    <android.support.design.widget.TextInputEditText
        android:id="@+id/textinputedittext_help_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="top"
        android:digits="@string/digits_text"
        android:hint="@string/description"
        android:inputType="textMultiLine"
        android:lines="6"
        android:maxLines="10" />
</android.support.design.widget.TextInputLayout>

在Android EditText中数字允许的空间。