服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android自定义日历效果

Android自定义日历效果

2022-12-16 15:13qq_36914492 Android

这篇文章主要为大家详细介绍了Android自定义日历效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

因为工作功能需求,自定义一个日历,效果如下,点击选中日历

Android自定义日历效果

使用github上面一个前辈的框架

?
1
2
implementation 'com.necer.ncalendar:ncalendar:5.0.0'
implementation 'com.github.CodingEnding:PopupLayout:v1.0'//poplayout

框架使用基本类型地址,大家可以根据需要学习修改:地址

自定义日历的xml文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 tools:context=".CalendarActivity">
 
 <View
  android:id="@+id/title_bar"
  android:layout_width="320dp"
  android:layout_height="40dp"
  android:background="@drawable/calendar_bg"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintStart_toStartOf="parent"
  app:layout_constraintTop_toTopOf="parent" />
 
 <TextView
  android:id="@+id/year"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginStart="18dp"
  android:text="2018"
  android:textColor="#ffffff"
  android:textSize="16sp"
  app:layout_constraintBottom_toBottomOf="@id/title_bar"
  app:layout_constraintStart_toStartOf="@id/title_bar"
  app:layout_constraintTop_toTopOf="@id/title_bar" />
 
 <TextView
  android:id="@+id/month"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_marginStart="18dp"
  android:text="四"
  android:textColor="#ffffff"
  android:textSize="18sp"
  app:layout_constraintBottom_toBottomOf="@id/title_bar"
  app:layout_constraintEnd_toEndOf="@id/title_bar"
  app:layout_constraintStart_toStartOf="@id/title_bar"
  app:layout_constraintTop_toTopOf="@id/title_bar" />
 <TextView
  android:id="@+id/monthName"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="月"
  android:textColor="#ffffff"
  android:textSize="18sp"
  app:layout_constraintBottom_toBottomOf="@id/title_bar"
  app:layout_constraintStart_toEndOf="@id/month"
  app:layout_constraintTop_toTopOf="@id/title_bar" />
 <com.necer.view.WeekBar
  android:id="@+id/week"
  android:layout_width="320dp"
  android:layout_height="wrap_content"
  android:layout_marginTop="10dp"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintStart_toStartOf="parent"
  app:layout_constraintTop_toBottomOf="@id/title_bar" />
 
 <com.necer.calendar.MonthCalendar
  android:id="@+id/month_calendar"
  android:layout_width="320dp"
  android:layout_height="280dp"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintStart_toStartOf="parent"
  app:layout_constraintTop_toBottomOf="@id/week" />
 
 <View
  android:id="@+id/bottom_view"
  android:layout_width="320dp"
  android:layout_height="40dp"
  android:background="@drawable/calendar_bg_bottom"
  app:layout_constraintEnd_toEndOf="parent"
  app:layout_constraintStart_toStartOf="parent"
  app:layout_constraintTop_toBottomOf="@id/month_calendar" />
 
 <TextView
  android:id="@+id/lastYear"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:onClick="lastYear"
  android:text="上一年"
  android:textColor="#ffffff"
  app:layout_constraintBottom_toBottomOf="@id/bottom_view"
  app:layout_constraintEnd_toStartOf="@id/dividerOne"
  app:layout_constraintStart_toStartOf="@id/bottom_view"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
 
 <View
  android:id="@+id/dividerOne"
  android:layout_width="1dp"
  android:layout_height="40dp"
  android:background="#ffffff"
  app:layout_constraintEnd_toStartOf="@id/lastMonth"
  app:layout_constraintStart_toEndOf="@id/lastYear"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
 
 <TextView
  android:id="@+id/lastMonth"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:onClick="lastMonth"
  android:text="上个月"
  android:textColor="#ffffff"
  app:layout_constraintBottom_toBottomOf="@id/bottom_view"
  app:layout_constraintEnd_toStartOf="@id/dividerTwo"
  app:layout_constraintStart_toEndOf="@id/dividerOne"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
 
 <View
  android:id="@+id/dividerTwo"
  android:layout_width="1dp"
  android:layout_height="40dp"
  android:background="#ffffff"
  app:layout_constraintEnd_toStartOf="@id/nextMonth"
  app:layout_constraintStart_toEndOf="@id/lastMonth"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
 
 <TextView
  android:id="@+id/nextMonth"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:text="下个月"
  android:textColor="#ffffff"
  android:onClick="nextMonth"
  app:layout_constraintBottom_toBottomOf="@id/bottom_view"
  app:layout_constraintEnd_toStartOf="@id/dividerThree"
  app:layout_constraintStart_toEndOf="@id/dividerTwo"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
 
 <View
  android:id="@+id/dividerThree"
  android:layout_width="1dp"
  android:layout_height="40dp"
  android:background="#ffffff"
  app:layout_constraintEnd_toStartOf="@id/nextYear"
  app:layout_constraintStart_toEndOf="@id/nextMonth"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
 
 <TextView
  android:id="@+id/nextYear"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:gravity="center"
  android:text="下一年"
  android:textColor="#ffffff"
  android:onClick="nextYear"
  app:layout_constraintBottom_toBottomOf="@id/bottom_view"
  app:layout_constraintEnd_toEndOf="@id/bottom_view"
  app:layout_constraintStart_toEndOf="@id/dividerThree"
  app:layout_constraintTop_toTopOf="@id/bottom_view" />
</androidx.constraintlayout.widget.ConstraintLayout>

MainActivity,日历的功能重写也是在和这个函数中

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.example.calendartest;
 
import androidx.appcompat.app.AppCompatActivity;
 
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
 
import com.codingending.popuplayout.PopupLayout;
import com.necer.calendar.BaseCalendar;
import com.necer.calendar.MonthCalendar;
import com.necer.enumeration.CheckModel;
import com.necer.enumeration.DateChangeBehavior;
import com.necer.listener.OnCalendarChangedListener;
 
import org.joda.time.LocalDate;
 
public class MainActivity extends AppCompatActivity {
 PopupLayout popupLayout;
 View calendarView;
 TextView mYear, mMonth, lastYear, nextYear, lastMonth, nextMonth;
 MonthCalendar monthCalendar;
 int currentYear, currentMonth;
 Button intent;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  intent = findViewById(R.id.intent);
  calendarView = View.inflate(this, R.layout.calendar, null);
  popupLayout = PopupLayout.init(this, calendarView);
 
 }
 
 public void intent(View view) {
  initCalendar();
  popupLayout.show(PopupLayout.POSITION_CENTER);
 }
 
 public void initCalendar() {
  monthCalendar = calendarView.findViewById(R.id.month_calendar);
  mYear = calendarView.findViewById(R.id.year);
  mMonth = calendarView.findViewById(R.id.month);
  lastYear = calendarView.findViewById(R.id.lastYear);
  nextYear = calendarView.findViewById(R.id.nextYear);
  lastMonth = calendarView.findViewById(R.id.lastMonth);
  nextMonth = calendarView.findViewById(R.id.nextMonth);
  monthCalendar.setCheckMode(CheckModel.SINGLE_DEFAULT_UNCHECKED);
 
  monthCalendar.setOnCalendarChangedListener(new OnCalendarChangedListener() {
   @Override
   public void onCalendarChange(BaseCalendar baseCalendar, int year, int month, LocalDate localDate, DateChangeBehavior dateChangeBehavior) {
    mYear.setText(String.valueOf(year));
    mMonth.setText(String.valueOf(month));
    intent.setText(String.valueOf(localDate));
    currentYear = year;
    currentMonth = month;
    new Handler().postDelayed(new Runnable() {
     @Override
     public void run() {
      popupLayout.dismiss();
     }
    },800);
   }
  });
 }
 
 public void lastMonth(View view) {
  monthCalendar.toLastPager();
 }
 
 public void nextMonth(View view) {
  monthCalendar.toNextPager();
 }
 
 public void nextYear(View view) {
  monthCalendar.jumpDate(currentYear + 1, currentMonth, 1);
 }
 
 public void lastYear(View view) {
  monthCalendar.jumpDate(currentYear - 1, currentMonth, 1);
 }
}

GitHub下载地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_36914492/article/details/105677085

延伸 · 阅读

精彩推荐