conversations-classic/src/main/res/layout/fragment_conversations_overview.xml

24 lines
934 B
XML
Raw Normal View History

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