0
我正在嘗試在CollapsingToolbarLayout
中構建PreferenceFragment
。問題是PreferenceFragment
中的元素太多而且不顯示。看起來好像NestedScrollView
不適用於這些片段。解決方案here不適用於我,因爲我無法使用compat庫出於其他原因。我該如何解決這個問題?使用CollapsingToolbarLayout滾動PreferenceFragment
代碼:很長一段時間我想通了,PreferenceFragment
使用ListView
,以顯示它的元素而這又沒有內部NestedScrollView
工作後
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_user_profile">
<FrameLayout
android:id="@+id/user_profile_content"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.v4.widget.NestedScrollView>
您compat的圖書館意味着什麼:我通過重寫
PreferenceFragment
onViewCreated
方法來解決呢? – Cochi我的意思是支持偏好庫 –