0

内容辅助(ctrl-space)工作

<EditTextPreference

但是对于以下单行和值“真”或“假”它不起作用?

android:singleLine="true"

获取消息:Content Assist 不适用于当前位置

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
 ...
 <EditTextPreference
    android:hint="your@address.com"
    android:inputType="textEmailAddress"
    android:key="@string/key_dest_email"
    android:maxLines="1"
    android:selectAllOnFocus="true"
    android:singleLine="true"
    android:title="@string/pref_dest_email" />
 ...
</PreferenceScreen>

我用“Android 通用 XML 编辑器”打开 xml 文件它应该可以工作吗?谢谢!

4

1 回答 1

0

你可以参考这个:

http://developer.android.com/reference/android/preference/EditTextPreference.html

他们不支持那些。

于 2013-03-04T14:28:30.107 回答