我想在我的Android应用程序中实现两个月的日历,如下图,
我试图通过谷歌搜索,但无法获得两个月日历的任何源代码,请提供两个月日历的源代码,如果有的话...等待你的回复......
答案 0 :(得分:0)
可以使用网格视图实现两个月的日历。网格视图的主要优点是,它具有autoscroll属性default.So尝试在你的android xml上使用gridview。请参阅下面的代码,
<GridView
android:id="@+id/calendar"
android:numColumns="7"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</GridView>