我正在使用Caldroid库将日历显示为对话框片段。它的工作正常,但在横向模式下,日历并未显示所有日期(上周缺失)。见图:
我已经检查了库中的xml这个视图及其使用视图寻呼机,我不知道如何修改它。还有一个疑问,如何禁用当前日期的所有日期?
编辑:
<?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="wrap_content"
android:background="@color/caldroid_white"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/calendar_title_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/calendar_left_arrow"
android:layout_width="50dp"
android:layout_height="44dp"
android:layout_alignParentLeft="true"
android:background="@drawable/left_arrow" />
<TextView
android:id="@+id/calendar_month_year_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_toLeftOf="@+id/calendar_right_arrow"
android:layout_toRightOf="@+id/calendar_left_arrow"
android:gravity="center_horizontal"
android:textIsSelectable="true"
android:textSize="22sp" />
<Button
android:id="@+id/calendar_right_arrow"
android:layout_width="50dp"
android:layout_height="44dp"
android:layout_alignParentRight="true"
android:background="@drawable/right_arrow" />
</RelativeLayout>
<GridView
android:id="@+id/weekday_gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-15dp"
android:numColumns="7"
android:stretchMode="columnWidth" >
</GridView>
<com.antonyt.infiniteviewpager.InfiniteViewPager
android:id="@+id/months_infinite_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-10dp" />
</LinearLayout>
答案 0 :(得分:1)
(我是Caldroid作者)
日历内的单元格是正方形,因此在横向模式和小布局中,它没有足够的空间。我没有这种模式的最佳解决方案,但您可以尝试一些事项:
不显示对话框标题(“选择日期”)。它将为日历提供更多空间
将初始参数中的SIX_WEEKS_IN_CALENDAR
设置为“false”
提供非正方形的自定义单元格
让我知道什么最适合你,这样我就可以改进图书馆,甚至更好地向我发送拉取请求:)
答案 1 :(得分:1)
在InfiniteViewPager中删除onMeasure方法并将calendar_view.xml内容替换为以下内容:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/caldroid_white"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/calendar_title_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true">
<Button
android:id="@+id/calendar_left_arrow"
android:layout_width="50dp"
android:layout_height="44dp"
android:layout_alignParentLeft="true"
android:background="@drawable/left_arrow" />
<TextView
android:id="@+id/calendar_month_year_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:layout_toLeftOf="@+id/calendar_right_arrow"
android:layout_toRightOf="@+id/calendar_left_arrow"
android:gravity="center_horizontal"
android:textIsSelectable="true"
android:textSize="21sp" />
<Button
android:id="@+id/calendar_right_arrow"
android:layout_width="50dp"
android:layout_height="44dp"
android:layout_alignParentRight="true"
android:background="@drawable/right_arrow" />
</RelativeLayout>
<GridView
android:layout_below="@+id/calendar_title_view"
android:id="@+id/weekday_gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-10dp"
android:numColumns="7"
android:stretchMode="columnWidth" >
</GridView>
<com.antonyt.infiniteviewpager.InfiniteViewPager
android:layout_below="@+id/weekday_gridview"
android:layout_alignParentBottom="true"
android:id="@+id/months_infinite_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>