Conversations/src/main/res/layout/fragment_conversations_over...

27 lines
1.1 KiB
XML
Raw Normal View History

<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2014-10-22 18:38:44 +02:00
2018-04-06 13:49:50 +02:00
<android.support.design.widget.CoordinatorLayout
android:background="?attr/color_background_primary"
android:layout_width="match_parent"
2018-02-21 15:46:56 +01:00
android:layout_height="match_parent">
2014-10-22 18:38:44 +02:00
2018-04-06 13:49:50 +02:00
<android.support.v7.widget.RecyclerView
2014-10-22 18:38:44 +02:00
android:id="@+id/list"
android:scrollbars="vertical"
2018-04-06 13:49:50 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/color_background_primary"
2018-04-06 13:49:50 +02:00
/>
2014-10-22 18:38:44 +02:00
2018-02-21 15:46:56 +01:00
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
app:backgroundTint="?colorPrimary"
2018-02-21 15:46:56 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
2018-02-24 21:57:42 +01:00
android:src="@drawable/ic_chat_white_24dp"/>
2018-04-06 13:49:50 +02:00
</android.support.design.widget.CoordinatorLayout>
2018-02-21 15:46:56 +01:00
</layout>