Ладно, есть такой список флажков в просмотре карты, который находится под LinearLayout. и я добавил скролл-просмотр, так как он не может вместить их всех, и я хочу добавить слайдер позже. Но проблема в том, что я не могу заставить его прокручиваться до конца, как показано на рисунке ниже. Я попробовал несколько решений, таких как android:fillViewport="true"
, представленных на онлайн-форумах и на некоторых сайтах, но ни одно из них, похоже, не работает .
Page_three.xml
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="top"
android:fadeScrollbars="true"
android:fillViewport="true"
android:scrollbars="vertical">
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/CardStyle.Home"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/pref_check" />
</android.support.v7.widget.CardView>
</ScrollView>
Pref_check.xml
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="@dimen/view_spacing_small"
xmlns:android="http://schemas.android.com/apk/res/android">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/preferences"
android:textAppearance="@style/TextStyle.Title" />
<CheckBox
android:id="@+id/chkBeach"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/beach" />
<CheckBox
android:id="@+id/chkBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/bar" />
<CheckBox
android:id="@+id/chkMuseum"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/museum" />
<CheckBox
android:id="@+id/chkRestaurant"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/restaurant" />
<CheckBox
android:id="@+id/chkNightClub"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/night_club" />
<CheckBox
android:id="@+id/chkArtGallery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/art_gallery" />
<CheckBox
android:id="@+id/chkAmusementPark"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/amusement_park" />
<CheckBox
android:id="@+id/chkCasino"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/casino" />
<CheckBox
android:id="@+id/chkClothingStore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/clothing_store" />
<CheckBox
android:id="@+id/chkShoppingMall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/shopping_mall" />
<CheckBox
android:id="@+id/chkAmusementCenter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/amusement_center" />
<CheckBox
android:id="@+id/chkResort"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/view_spacing_medium"
android:checked="false"
android:onClick="onCheckboxClicked"
android:text="@string/Resort" />
</LinearLayout>
Activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<FrameLayout
android:id="@+id/frame_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_navigation"
android:animateLayoutChanges="true">
</FrameLayout>
<android.support.design.widget.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bottom_navigation"
android:layout_alignParentBottom="true"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@color/white"
app:itemTextColor="@color/white"
app:menu="@menu/navigation"
/>
</RelativeLayout>