mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
0a72f6b32e
Fixes #5098 Closes #5796 // FREEBIE
25 lines
877 B
XML
25 lines
877 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@android:id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="vertical"
|
|
android:cacheColorHint="?conversation_background" />
|
|
|
|
|
|
<!--suppress AndroidLintUnusedAttribute-->
|
|
<View android:id="@+id/compose_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dp"
|
|
android:layout_gravity="bottom"
|
|
android:background="@drawable/compose_divider_background"
|
|
android:alpha="0"
|
|
android:visibility="invisible" />
|
|
|
|
</FrameLayout>
|