當開始使用 Leakcanary 之後,我的興趣就從寫 code 變成找 Memory Leak (以下簡稱ml)了XD
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
2021年6月9日 星期三
2020年10月6日 星期二
ScrollView 嵌套 RecyclerView 與其他 view 的滑動事件
目的:在 recyclerview 上方加個 textview,且要一起滑動
實作:
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/tv_bookCount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:visibility="visible" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerview_books"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>
在fragment:
rv.setNestedScrollingEnabled(false);
標籤:
android,
recyclerView,
ScrollView,
UI
2018年12月17日 星期一
RecyclerView 滑動非常不smooth 的問題
假如RecyclerView被嵌在ScrollView裡會有滑動不平順的問題,這時候添加
rv.setNestedScrollingEnabled(false);
rv.setNestedScrollingEnabled(false);
就好惹
標籤:
android,
recyclerView
訂閱:
文章 (Atom)