我想从edittext
为用户写两个选项,或者输入任何内容(这意味着不需要设置提醒日期)或者通过datePickerDialog
选择一个时间来提醒。我如何实现?
这是我的edittext
添加时间代码:
addtime.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
datePickerDialog.show();
return false;
}
});
答案 0 :(得分:1)
将此edittextunfocused.xml放在可绘制文件夹
中<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke android:color="@color/grey"
android:width="@dimen/twoDp"/>
<corners android:radius="@dimen/twoDp"></corners>
</shape>
代替你的EditText把这个
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/edittextunfocused"
android:text="Add Time"
android:id="@+id/addtime"
/>