顯示具有 recyclerView 標籤的文章。 顯示所有文章
顯示具有 recyclerView 標籤的文章。 顯示所有文章

2021年6月9日 星期三

Memory Leak Fix: when use timer in viewholder

當開始使用 Leakcanary 之後,我的興趣就從寫 code 變成找 Memory Leak (以下簡稱ml)了XD

debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'

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);



2018年12月17日 星期一

RecyclerView 滑動非常不smooth 的問題

假如RecyclerView被嵌在ScrollView裡會有滑動不平順的問題,這時候添加


rv.setNestedScrollingEnabled(false);

就好惹