我想创建一个只允许数字输入的EditText数组。我想用逗号分隔数字。我使用以下代码创建了EditText数组,并且键盘行为已更改,但是当我按下逗号键时没有任何反应。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:shrinkColumns="*"
android:stretchColumns="*">
<TableRow
android:id="@+id/tableRow4"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:gravity="center_horizontal">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="max."
android:gravity="center"
android:ems="4"
android:id="@+id/editText"/>
</TableRow>
</TableLayout>
</RelativeLayout>
&#13;
答案 0 :(得分:1)
您必须使用此输入类型:
InputType.TYPE_NUMBER_FLAG_DECIMAL
或者在xml中:
android:inputType="numberDecimal"