作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
Possible Duplicate:
how to call the ok button in the EditTextPreference
我想验证 EditTextPreference 对话框的输入(输入 6 位数字)。
这就是我的(相关)preferences.xml fragment 的样子:
<!--EditTextPreference-->
<com.app.preferences.UpdatePincodePreference
android:key="PIN_CODE_PREFERENCE"
android:title="@string/pincode_preference_title"
android:summary="@string/pincode_preference_summary"
android:dialogTitle="@string/pincode_preference_dialog_title"
android:dialogMessage="@string/pincode_preference_dialog_message"
android:inputType="number"
/>
如何测试用户在首选项对话框的 EditText 中输入的数字没有少于或多于 6 位?
基本上,我需要在 OK 按钮上设置一个 onClickListener(),但如何获取我未定义的 OK 按钮。它是 EditTextPreference 的默认 View ,取消按钮也是。
问题与“how to call the ok button in the EditTextPreference”完全相同,但已接受的解决方案中提供的链接现在已损坏。
我是一名优秀的程序员,十分优秀!