I want to select multiple dates in calendar in and

2020-04-05 22:50发布

I want to select multiple dates in calendar,multiple select is working fine but in toast displaying only single date(first date).If I selected 4 days(1.8.14 to 4.8.14) all dates should be displayed in toast. here is my code


public class SampleTimesSquareActivity extends Activity{ 

          private static final String TAG="SampleTimesSquareActivity";
          private CalendarPickerView calendar;
          private AlertDialog theDialog;
          private CalendarPickerView dialogView;
          public static Date JULY;

          @Override
          protected void onCreate(Bundle savedInstanceState)
          {
                    super.onCreate(savedInstanceState);
                    setContentView(R.layout.sample_calendar_picker);

                   final Calendar nextYear = Calendar.getInstance();
                    nextYear.add(Calendar.YEAR, 1);

                    final Calendar lastYear = Calendar.getInstance();
                    lastYear.add(Calendar.YEAR, -1);

                    calendar = (CalendarPickerView) findViewById(R.id.calendar_view);

                    final Button multi = (Button) findViewById(R.id.button_multi);



                        Calendar today = Calendar.getInstance();

                        today.set(Calendar.DAY_OF_MONTH,
                        today.getActualMaximum(Calendar.DAY_OF_MONTH));

                        Date end = today.getTime();
                        ArrayList<Date> dates = new ArrayList<Date>();
                        for (int i = 0; i < 5; i++) 
                        {
                          today.add(Calendar.DAY_OF_MONTH, 3);
                          dates.add(today.getTime());
                        }
                        calendar.init(new Date(),end) //
                            .inMode(SelectionMode.MULTIPLE);


                    findViewById(R.id.done_button).setOnClickListener(new OnClickListener() 
                    {
                          @Override
                          public void onClick(View view) 
                          {
                            Log.d(TAG, "Selected time in millis: " + calendar.getSelectedDate().getTime());
                            String toast = "Selected dates: " + calendar.getSelectedDate();
                            Toast.makeText(SampleTimesSquareActivity.this, toast, LENGTH_SHORT).show();
                          }
                    });
          }

          @Override public void onConfigurationChanged(Configuration newConfig) 
          {
                    boolean applyFixes = theDialog != null && theDialog.isShowing();
                    if (applyFixes) 
                    {
                      Log.d(TAG, "Config change: unfix the dimens so I'll get remeasured!");
                      dialogView.unfixDialogDimens();
                    }
                    super.onConfigurationChanged(newConfig);
                    if (applyFixes) 
                    {
                      dialogView.post(new Runnable() 
                      {
                        @Override public void run()
                        {
                          Log.d(TAG, "Config change done: re-fix the dimens!");
                          dialogView.fixDialogDimens();
                        }
                      });
                    }
          }
}

标签: android
3条回答
▲ chillily
2楼-- · 2020-04-05 23:10

Use SelectionMode.MULTIPLE

calendar.init(today, nextYear.getTime())
        .inMode(CalendarPickerView.SelectionMode.MULTIPLE);

findViewById(R.id.btn_done).setOnClickListener(new View.OnClickListener() {
@Override public void onClick(View view) {
    Log.d("TAGGG", "Selected time in millis: " + calendar.getSelectedDate().getTime());
    String toast = "Selected: " + calendar.getSelectedDates();
    Toast.makeText(CalenderItem.this, toast, Toast.LENGTH_SHORT).show();
}
});
查看更多
Melony?
3楼-- · 2020-04-05 23:18

A quick google says there is a method in CalendarPickerView called getSelectedDates() which returns a list of dates. This is probably what you want.

Updated link: https://github.com/square/android-times-square/blob/master/library/src/main/java/com/squareup/timessquare/CalendarPickerView.java

查看更多
该账号已被封号
4楼-- · 2020-04-05 23:20

Try below code for briefly explanation.......

final Calendar nextYear = Calendar.getInstance();
    nextYear.add(Calendar.YEAR, 2);


     gson = new Gson();
    sharedpreferences1 = getSharedPreferences("MyPREFERENCES10005471hjsdhjsdjghjfdjksdlsasa00fdsadeetytadsadsywrerwerrw0255878762343", Context.MODE_PRIVATE);
    editor = sharedpreferences1.edit();
    calendar = (CalendarPickerView) findViewById(R.id.calendar_view);
    final String ddd=sharedpreferences1.getString("Str",null);
    sdf = new SimpleDateFormat("dd-MM-yyyy");
    Type type = new TypeToken<ArrayList<Date>>() {}.getType();
    arrayList = gson.fromJson(ddd, type);
    dates = new ArrayList<Date>();
    if(arrayList!=null){
        Toast.makeText(SampleTimesSquareActivity.this, "" + arrayList, LENGTH_SHORT).show();
        calendar.init(new Date(), nextYear.getTime()) //
                .inMode(SelectionMode.MULTIPLE) //
                .withSelectedDates(arrayList);
        for(int ii=0;ii<arrayList.size();ii++){
            Date d=arrayList.get(ii);
            String format=sdf.format(d);
            Toast.makeText(getApplicationContext(),format,Toast.LENGTH_SHORT).show();
        }
    }
    else{
        Toast.makeText(SampleTimesSquareActivity.this, "Null", LENGTH_SHORT).show();
        calendar.init(new Date(), nextYear.getTime()) //
                .inMode(SelectionMode.MULTIPLE) //
                .withSelectedDates(arrayList);
    }



    findViewById(R.id.done_button).setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View view) {
            Log.d(TAG, "Selected time in millis: " + calendar.getSelectedDate().getTime());
            String toast = "Selected: " + calendar.getSelectedDate();
             dates = (ArrayList<Date>) calendar.getSelectedDates();
             String json=null;
            Log.i("Size",""+dates);
            for (int i = 0; i < dates.size(); i++) {
                Date tempDate = dates.get(i);
                String formattedDate = sdf.format(tempDate);
                Toast.makeText(SampleTimesSquareActivity.this, "" + formattedDate, LENGTH_SHORT).show();
                 json = gson.toJson(dates);

            }

            editor.putString("Str", json);
            editor.clear();
            editor.apply();
        }
    });

Thanks...take enjoy

查看更多
登录 后发表回答