MonthPicker
A simple month selection view 一个简单的月份选择控件
Install / Use
/learn @lintianlin/MonthPickerREADME
中文版 | English </br> MonthPicker
A simple month selection view.
Introduction
It is customizable and easy to use.You can select month of year.
ScreenShot
<div align=center><img width="216" height="384" src="https://github.com/lintianlin/MonthPicker/blob/master/Gif/monthpicker2.gif"/></div>
Gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
...
}
}
dependencies{
compile 'com.github.lintianlin:MonthPicker:v1.0.1'
}
Usage
<?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">
<com.sinfeeloo.monthpicker.MonthPicker
android:id="@+id/monthPicker"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
public class MainActivity extends AppCompatActivity {
private MonthPicker monthPicker;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
monthPicker = findViewById(R.id.monthPicker);
monthPicker.setOnMonthSelectEventListener(new MonthPicker.OnMonthSelectEventListener() {
@Override
public void onMonthSelected(String year, String month) {
Toast.makeText(MainActivity.this, year + "年" + month + "月", Toast.LENGTH_SHORT).show();
}
});
}
}
License
Copyright 2017 SinFeeLoo
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
