mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 04:55:29 +03:00
fix to show all participants in conversation info
In general it's a bad idea to use recyclerview inside scrollviews because of poor performance! So this is only a fix until everything is replaced with jetpack compose. setHasFixedSize and isNestedScrollingEnabled were set to false. This might not be necessary for the current implementation, but it's recommended when using NestedScrollView. Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
0f5601645f
commit
32f4b59161
2 changed files with 3 additions and 3 deletions
|
@ -495,7 +495,7 @@ class ConversationInfoActivity :
|
|||
|
||||
val layoutManager = SmoothScrollLinearLayoutManager(this)
|
||||
binding.recyclerView.layoutManager = layoutManager
|
||||
binding.recyclerView.setHasFixedSize(true)
|
||||
binding.recyclerView.setHasFixedSize(false)
|
||||
binding.recyclerView.adapter = adapter
|
||||
binding.recyclerView.isNestedScrollingEnabled = false
|
||||
adapter!!.addListener(this)
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
android:indeterminateTintMode="src_in"
|
||||
tools:visibility="gone" />
|
||||
|
||||
<ScrollView
|
||||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
|
@ -413,5 +413,5 @@
|
|||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
</LinearLayout>
|
||||
|
|
Loading…
Reference in a new issue