mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-28 17:38:55 +03:00
Merge pull request #3763 from nextcloud/backport/3762/stable-19.0
[stable-19.0] fix to show all participants in conversation info
This commit is contained in:
commit
71076c6882
2 changed files with 3 additions and 3 deletions
|
@ -495,7 +495,7 @@ class ConversationInfoActivity :
|
||||||
|
|
||||||
val layoutManager = SmoothScrollLinearLayoutManager(this)
|
val layoutManager = SmoothScrollLinearLayoutManager(this)
|
||||||
binding.recyclerView.layoutManager = layoutManager
|
binding.recyclerView.layoutManager = layoutManager
|
||||||
binding.recyclerView.setHasFixedSize(true)
|
binding.recyclerView.setHasFixedSize(false)
|
||||||
binding.recyclerView.adapter = adapter
|
binding.recyclerView.adapter = adapter
|
||||||
binding.recyclerView.isNestedScrollingEnabled = false
|
binding.recyclerView.isNestedScrollingEnabled = false
|
||||||
adapter!!.addListener(this)
|
adapter!!.addListener(this)
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
android:indeterminateTintMode="src_in"
|
android:indeterminateTintMode="src_in"
|
||||||
tools:visibility="gone" />
|
tools:visibility="gone" />
|
||||||
|
|
||||||
<ScrollView
|
<androidx.core.widget.NestedScrollView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
@ -429,5 +429,5 @@
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</ScrollView>
|
</androidx.core.widget.NestedScrollView>
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
Loading…
Reference in a new issue