我正在尝试使用 calendarView 创建月视图。但我想念一些使用calendarView 的经验。我实际上只知道如何更改颜色。我希望用户只能看到当前月份而不能滚动日历等。
你知道任何有用的文档、教程或方便的技巧,从而我可以更专业地处理 calendarView 吗?
我正在尝试使用 calendarView 创建月视图。但我想念一些使用calendarView 的经验。我实际上只知道如何更改颜色。我希望用户只能看到当前月份而不能滚动日历等。
你知道任何有用的文档、教程或方便的技巧,从而我可以更专业地处理 calendarView 吗?
您好,请访问所有给定的链接,希望对您有所帮助
1. https://github.com/inteist/android-better-time-picker
2. https://github.com/derekbrameyer/android-betterpickers
3. http://www.androiddevelopersolutions.com/2013/05/android-calendar-sync.html
4. http://www.androidviews.net/2013/04/extendedcalendarview/
5. http://abinashandroid.wordpress.com/2013/07/21/how-to-create-custom-calendar-in-android/
6. http://w2davids.wordpress.com/android-simple-calendar/
7. https://github.com/roomorama/Caldroid
8. https://github.com/flavienlaurent/datetimepicker
你什么时候访问
https://github.com/derekbrameyer/android-betterpickers
有关此项目的工作实施,请参见 sample/ 文件夹。
实现适当的处理程序回调:
public class MyActivity extends Activity implements DatePickerDialogFragment.DatePickerDialogHandler {
@Override
public void onCreate(Bundle savedInstanceState) {
// ...
}
@Override
public void onDialogDateSet(int year, int monthOfYear, int dayOfMonth) {
// Do something with your date!
}
}
使用 Builder 类之一创建一个带有主题的 PickerDialog:
DatePickerBuilder dpb = new DatePickerBuilder()
.setFragmentManager(getSupportFragmentManager())
.setStyleResId(R.style.BetterPickersDialogFragment);
dpb.show()
还有另一个例子,你可以访问
https://github.com/roomorama/Caldroid
并使用如下
要将 caldroid 片段嵌入到您的活动中,请使用以下代码:
CaldroidFragment caldroidFragment = new CaldroidFragment();
Bundle args = new Bundle();
Calendar cal = Calendar.getInstance();
args.putInt(CaldroidFragment.MONTH, cal.get(Calendar.MONTH) + 1);
args.putInt(CaldroidFragment.YEAR, cal.get(Calendar.YEAR));
caldroidFragment.setArguments(args);
FragmentTransaction t = getSupportFragmentManager().beginTransaction();
t.replace(R.id.calendar1, caldroidFragment);
t.commit();