编辑文本不接受可消耗ListVIew中的数字键盘

时间:2016-05-17 12:29:58

标签: android android-layout android-fragments android-studio

这是我在xml中的代码

 <EditText
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:hint="0.00"
     android:inputType="number|numberDecimal"
     android:layout_marginRight="5dp"
     android:textSize="16dp"
     android:id="@+id/et_childinput1"
     android:background="#ffffff"
     android:imeOptions="actionDone"/>

我也试过android:numeric =“decimal”这是多方面的,我怎么能这样做。 我知道了

    android:numeric
    android:phoneNumber
    android:inputMethod
    android:capitalize
    android:autoText

替换为android:inputType

上面的代码在编辑文本中为我工作但是当它进入可消耗的列表视图子项时,问题出现在键盘出现但是再次全键盘被实例中的数字替换 任何帮助将不胜感激

2 个答案:

答案 0 :(得分:0)

<EditText
                android:id="@+id/phoneNoRegEdit"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_margin="5dp"
                android:ems="15"
                android:hint="Phone"
                android:inputType="phone"
                android:maxLength="10"
                android:singleLine="true"
                android:textColorHint="@color/blue_home"/>

它可能对你有帮助

答案 1 :(得分:0)

如果您只想要数字,那么它可以帮助您

<EditText
        android:id="@+id/phoneNoRegEdit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:ems="15"
        android:hint="Phone"
        android:inputType="number"
        android:digits="01234567989"
        android:maxLength="10"
        android:singleLine="true"
        android:textColorHint="@color/blue_home"/>