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> 
+0

您compat的圖書館意味着什麼:我通過重寫PreferenceFragmentonViewCreated方法來解決呢? – Cochi

+0

我的意思是支持偏好庫 –

回答

1

沒關係。

@Override 
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { 
    super.onViewCreated(view, savedInstanceState); 
    final ListView lv = (ListView) view.findViewById(android.R.id.list); 
    if (lv != null) 
     ViewCompat.setNestedScrollingEnabled(lv, true); 
} 

希望這可以幫助別人

相關問題