Android の Date Picker に関して 1 つの問題があります。
私は2つの日付ピッカーを持っています:
開始日について
終了日について。
開始日に当月の初日を設定したい。終了日では、現在の日付 (つまり、今日の日付) を設定したいと考えています。私はそれを設定しましたが、その日付のようなトランザクションを取得します...最初の日付から現在の日付まで。また、コンソールの日付でも、開始日が 1 日、終了日が 25 日 (つまり、今日の日付) として表示されます。
しかし、日付ピッカーでは、現在の日付を両方でしか見ることができません。開始日と終了日として。つまり、最初の日付から現在の日付までの出力を取得しますが、日付ピッカーでは両方の日付ピッカーでのみ現在の日付を表示できます。
私を助けてください。
前もって感謝します。
コードは次のとおりです。
Date sDate=new Date(dp_startdate.getYear()-1900,dp_startdate.getMonth(),1);
Date eDate=new Date(dp_enddate.getYear()-1900,dp_enddate.getMonth(),dp_enddate.getDayOfMonth());
System.out.println("Sdate:"+sDate.toString());
System.out.println("EDate:"+eDate.toString());
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
String startDate=formatter.format(sDate);
String endDate=formatter.format(eDate);
System.out.println("start Date is:"+startDate);
System.out.println("end Date is:"+endDate);
Bundle bundle=new Bundle();
bundle.putString("startDate", startDate);
bundle.putString("endDate", endDate);
System.out.println("start Date is:"+startDate);
System.out.println("start Date is:"+endDate);
私を助けてください。