アプリでこのカスタム カレンダーを使用しています。カレンダーの日付がコンテンツをラップするのではなく、画面全体を埋める必要があります。これにより、アプリの下部に多くの空白ができます。カレンダーを画面の下部いっぱいに表示するにはどうすればよいですか (月が 4 週間または 5 週間ある場合はそれに応じて調整します)。
これはXMLです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg">
<ImageView
android:id="@+id/calendarToJournalButton"
android:src="@drawable/add_entry_button_selector"
android:gravity="left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="10dip">
</ImageView>
<Button
android:id="@+id/selectedDayMonthYear"
android:textColor="#FFFFFF"
android:layout_gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium"
android:background="@drawable/calendar_top_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/prevMonth"
android:src="@drawable/calendar_left_arrow_selector"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageView>
<Button
android:id="@+id/currentMonth"
android:layout_weight="0.6"
android:textColor="#FFFFFF"
android:textAppearance="?android:attr/textAppearanceMedium"
android:background="@drawable/calendar_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
<ImageView
android:id="@+id/nextMonth"
android:src="@drawable/calendar_right_arrow_selector"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageView>
</LinearLayout>
<LinearLayout
android:layout_gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/calendarheader"
android:src="@drawable/blue_bg_with_text"
android:layout_gravity="center"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ImageView>
</LinearLayout>
<GridView
android:id="@+id/calendar"
android:numColumns="7"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</GridView>
</LinearLayout>