当我将其设置为“numberPassword”时,Eclipse 编辑器无法识别字段上的 inputType,代码如下:
<EditText
android:id="@+id/pin_field"
android:layout_width="236dp"
android:layout_height="wrap_content"
android:inputType="numberPassword">
<requestFocus />
</EditText>
这是我在“android:inputType”行中遇到的错误:
"error: Error: String types not allowed (at 'inputType' with value 'numberPassword')."
在顶部的“图形布局”选项卡中,我已将版本从 2.3.3 更改为 Android 4.0,我读过它可能会修复它,但它似乎没有用。我可能遗漏了一些明显的东西,但无法弄清楚。
这是 inputType 和“numberPassword”的 Android 文档:http: //developer.android.com/reference/android/R.attr.html#inputType