如何编写代码让用户不做任何选择或选择时间?

时间:2018-02-08 14:56:42

标签: java android firebase

我想从edittext为用户写两个选项,或者输入任何内容(这意味着不需要设置提醒日期)或者通过datePickerDialog选择一个时间来提醒。我如何实现?

这是我的edittext添加时间代码:

addtime.setOnTouchListener(new View.OnTouchListener() {
       @Override
       public boolean onTouch(View v, MotionEvent event) {
           datePickerDialog.show();
           return false;
       }
   });

1 个答案:

答案 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"

                    />