Note that there are some explanatory texts on larger screens.

plurals
  1. POcalendarview stops scrolling when nested in scrollview in android
    primarykey
    data
    text
    <p>I have nested calendarview in <code>ScrollView</code> . My problem begins when height of view increases. I can scroll calendar months vertically but when <code>scrollview</code> scrollbar comes it does not let scroll calendar. Instead of scrolling calendar the whole view scroll up or down.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:fillViewport="true"&gt; &lt;LinearLayout android:orientation="vertical" android:id="@+id/ReminderLayout" android:layout_width="fill_parent" android:layout_height="wrap_content" &gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" &gt; &lt;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" /&gt; &lt;View android:id="@+id/seperator" android:layout_width="fill_parent" android:layout_height="1dip" /&gt; &lt;TextView android:id="@+id/lblNotes" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Notes" /&gt; &lt;EditText android:id="@+id/TaskNotes" android:layout_width="fill_parent" android:layout_height="wrap_content" android:inputType="textMultiLine" android:textSize="26.0sp" /&gt; &lt;View android:id="@+id/seperator" android:layout_width="fill_parent" android:layout_height="1dip" /&gt; &lt;TextView android:id="@+id/lblReminder" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Reminder" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt;" &lt;CalendarView android:id="@+id/calendarReminder" android:layout_width="fill_parent" android:layout_height="250dp" android:scrollbars="vertical" android:isScrollContainer="true" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" &gt; &lt;TimePicker android:id="@+id/timePickerReminder" android:layout_width="fill_parent" android:layout_height="match_parent" android:gravity="center" /&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" &gt; &lt;View android:id="@+id/seperator" android:layout_width="fill_parent" android:layout_height="1dip"/&gt; &lt;TextView android:id="@+id/ReminderTime" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="On Time" android:paddingLeft="20dip"/&gt; &lt;View android:id="@+id/seperator" android:layout_width="fill_parent" android:layout_height="1dip"/&gt; &lt;TextView android:id="@+id/Recurring" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Only Once" android:paddingLeft="20dip"/&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; &lt;/ScrollView&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload