使用 Android 1.6(4) 和 2.3.3(10) 测试。
我制作了一个简约的测试应用程序来演示这一点,它所做的只是加载 xml:
setContentView(R.layout.main);
xml是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<EditText
android:id="@+id/editText1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="none"
android:ems="10" >
</EditText>
问题:
当inputType="none"
在执行过程中设置实际输入类型变为 时textMultiLine(0x00020001)
,我已经用调试器检查了它。
另一方面,如果我使用inputType="text"
它按预期工作。
这是Android中的错误吗?