欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android 日歷控件庫(kù),可左右滑動(dòng),顯示公歷,農(nóng)歷,節(jié)假日等功能

 更新時(shí)間:2022年06月30日 14:26:12   作者:yalinfendou  
這篇文章主要介紹了Android 日歷控件庫(kù),可左右滑動(dòng),顯示公歷,農(nóng)歷,節(jié)假日等功能的相關(guān)資料,需要的朋友可以參考下

封面圖: 

demo效果圖

 

源碼目錄結(jié)構(gòu)        

Features

  1. 日歷左右滑動(dòng).
  2. 顯示陽(yáng)歷,農(nóng)歷,節(jié)假日和二十四節(jié)氣
  3. 實(shí)現(xiàn)對(duì)某月日期的單選或者多選.

使用步驟

Gradle Dependency

Add the library to your project build.gradle

  compile 'com.joybar.calendar:librarycalendar:1.0.4'

Sample Usage

實(shí)現(xiàn)OnPageChangeListener和OnDateClickListener接口,如果實(shí)現(xiàn)多選,需要實(shí)現(xiàn) OnDateCancelListener

 public class MainActivity extends AppCompatActivity implements

 CalendarViewPagerFragment.OnPageChangeListener,

 CalendarViewFragment.OnDateClickListener,

 CalendarViewFragment.OnDateCancelListener {

 

 private TextView tv_date;

 private boolean isChoiceModelSingle = false;

 private List<CalendarDate> mListDate = new ArrayList<>();

 

 @Override

 protected void onCreate(Bundle savedInstanceState) {

 super.onCreate(savedInstanceState);

 setContentView(R.layout.activity_main);

 tv_date = (TextView) findViewById(R.id.tv_date);

 initFragment();

 }

 

 private void initFragment(){

 FragmentManager fm = getSupportFragmentManager();

 FragmentTransaction tx = fm.beginTransaction();

 // Fragment fragment = new CalendarViewPagerFragment();

 Fragment fragment = CalendarViewPagerFragment.newInstance(isChoiceModelSingle);

 tx.replace(R.id.fl_content, fragment);

 tx.commit();

 }

 

 

 @Override

 public boolean onCreateOptionsMenu(Menu menu) {

 getMenuInflater().inflate(R.menu.menu_im, menu);

 return true;

 }

 @Override

 public boolean onOptionsItemSelected(MenuItem item) {

 switch (item.getItemId()) {

  case R.id.menu_single:

  isChoiceModelSingle = true;

  initFragment();

  break;

  case R.id.menu_multi:

  isChoiceModelSingle = false;

  initFragment();

  break;

  default:

  break;

 }

 return true;

 }

 @Override

 public void OnDateClick(CalendarDate calendarDate) {

 

 int year = calendarDate.getSolar().solarYear;

 int month = calendarDate.getSolar().solarMonth;

 int day = calendarDate.getSolar().solarDay;

 if (isChoiceModelSingle) {

  tv_date.setText(year + "-" + month + "-" + day);

 } else {

  //System.out.println(calendarDate.getSolar().solarDay);

  mListDate.add(calendarDate);

  tv_date.setText(listToString(mListDate));

 }

 

 }

 

 @Override

 public void OnDateCancel(CalendarDate calendarDate) {

 int count = mListDate.size();

 for (int i = 0; i < count; i++) {

  CalendarDate date = mListDate.get(i);

  if (date.getSolar().solarDay == calendarDate.getSolar().solarDay) {

  mListDate.remove(i);

  break;

  }

 }

 tv_date.setText(listToString(mListDate));

 }

 

 @Override

 public void OnPageChange(int year, int month) {

 tv_date.setText(year + "-" + month);

 mListDate.clear();

 }

 

 private static String listToString(List<CalendarDate> list) {

 StringBuffer stringBuffer = new StringBuffer();

 for (CalendarDate date : list) {

  stringBuffer.append(date.getSolar().solarYear + "-" + date.getSolar().solarMonth + "-" + date.getSolar().solarDay).append(" ");

 }

 return stringBuffer.toString();

 }

 

}

單選或者多選的實(shí)現(xiàn)代碼

 if (isChoiceModelSingle) {
  mGridView.setChoiceMode(GridView.CHOICE_MODE_SINGLE);
 } else {
  mGridView.setChoiceMode(GridView.CHOICE_MODE_MULTIPLE);
 }
 mGridView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
  @Override
  public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
  CalendarDate calendarDate = ((CalendarGridViewAdapter) mGridView.getAdapter()).getListData().get(position);
  if (isChoiceModelSingle) {
   //單選
   if (finalMListDataCalendar.get(position).isInThisMonth()) {
   onDateClickListener.OnDateClick(calendarDate);
   } else {
   mGridView.setItemChecked(position, false);
   }
  } else {
   //多選
   if (finalMListDataCalendar.get(position).isInThisMonth()) {
   // mGridView.getCheckedItemIds()
   if(!mGridView.isItemChecked(position)){
    onDateCancelListener.OnDateCancel(calendarDate);
   } else {
    onDateClickListener.OnDateClick(calendarDate);
   }
 
   } else {
   mGridView.setItemChecked(position, false);
   }
 
  }
  }
 });

git地址:https://github.com/myjoybar/android-calendar-view

 以上就是Android日歷控件的資料整理,后續(xù)繼續(xù)補(bǔ)充相關(guān)資料,謝謝大家對(duì)本站的支持!

相關(guān)文章

最新評(píng)論