2

Android の Date Picker に関して 1 つの問題があります。

私は2つの日付ピッカーを持っています:

  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);

私を助けてください。

4

1 に答える 1

4

これを試してください-->

    dp = (DatePicker) findViewById(R.id.datePicker);
    b = (Button) findViewById(R.id.button);


    b.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub

            final Calendar c = Calendar.getInstance();
            int year = c.get(Calendar.YEAR);
            int month = c.get(Calendar.MONTH);
            int day = 1;

            dp.setVisibility(1);

            dp.init(year, month, day, null);




            StringBuilder s = new StringBuilder();
            s.append(month + 1).append("-").append(day).append("-")
            .append(year).append(" ");

            Toast.makeText(Datepicker.this, s, Toast.LENGTH_LONG).show();


        }
    });


}


   <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
    android:orientation="vertical" >

   <DatePicker
    android:id="@+id/datePicker"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:visibility="invisible"
    />

    <Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" />



    </LinearLayout>

編集:xmlも貼り付けました

あなたが言ったように、1つの日付ピッカーを現在の月の最初の日付に固定したいので、システムのカレンダーから日の値を取得する代わりに(現在のカレンダーを提供します)、そこに任意のint値を明示的に配置できます.

次に、この値を使用できます。つまり、トーストでカスタムの日付値を使用しました..

于 2012-08-25T07:30:28.277 に答える