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

25 lines
952 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-02-21 14:46:56 +00:00
<FrameLayout
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
<de.timroes.android.listview.EnhancedListView
2014-10-22 16:38:44 +00:00
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="?attr/color_background_primary"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"/>
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-02-21 14:46:56 +00:00
</FrameLayout>
</layout>