Die Kalenderansicht stoppt den Bildlauf, wenn sie in der Bildlaufansicht in Android verschachtelt ist

Ich habe die Kalenderansicht in verschachteltScrollView . Mein Problem beginnt, wenn die Sichthöhe zunimmt. Ich kann Kalendermonate aber wann vertikal scrollenscrollview Bildlaufleiste kommt es nicht lassen Kalender blättern. Anstatt durch den Kalender zu scrollen, scrollen Sie in der gesamten Ansicht nach oben oder unten.

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:fillViewport="true">

<LinearLayout android:orientation="vertical" android:id="@+id/ReminderLayout" 
    android:layout_width="fill_parent" android:layout_height="wrap_content" >


        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <EditText
                android:id="@+id/TaskName"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:inputType="textCapWords"
                android:singleLine="true"
                android:textSize="26.0sp" />

            <View
                android:id="@+id/seperator"
                android:layout_width="fill_parent"
                android:layout_height="1dip" />

            <TextView
                android:id="@+id/lblNotes"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Notes" />

            <EditText
                android:id="@+id/TaskNotes"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:inputType="textMultiLine"
                android:textSize="26.0sp" />

            <View
                android:id="@+id/seperator"
                android:layout_width="fill_parent"
                android:layout_height="1dip" />

            <TextView
                android:id="@+id/lblReminder"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="Reminder" />
        </LinearLayout>

        <LinearLayout android:orientation="horizontal" 
            android:layout_width="fill_parent" android:layout_height="wrap_content">"

            <CalendarView
                android:id="@+id/calendarReminder"
                android:layout_width="fill_parent"
                android:layout_height="250dp" 
                android:scrollbars="vertical"
                android:isScrollContainer="true" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
           android:layout_height="wrap_content"
            android:orientation="horizontal"
            >

            <TimePicker
                android:id="@+id/timePickerReminder"
                android:layout_width="fill_parent"
                android:layout_height="match_parent"
                android:gravity="center" />

        </LinearLayout>


        <LinearLayout android:orientation="vertical" 
            android:layout_width="fill_parent" android:layout_height="wrap_content" >
            <View android:id="@+id/seperator" android:layout_width="fill_parent" android:layout_height="1dip"/>
            <TextView android:id="@+id/ReminderTime" android:layout_width="fill_parent" android:layout_height="wrap_content"
                 android:text="On Time" android:paddingLeft="20dip"/>
            <View android:id="@+id/seperator" android:layout_width="fill_parent" android:layout_height="1dip"/>
            <TextView android:id="@+id/Recurring" android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:text="Only Once" android:paddingLeft="20dip"/>
        </LinearLayout> 
</LinearLayout>
</ScrollView>

Antworten auf die Frage(2)

Ihre Antwort auf die Frage