2012-07-18 15:35:13 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-01-20 21:26:58 -10:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:fab="http://schemas.android.com/apk/res-auto"
|
2012-07-18 15:35:13 -07:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ListView android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
2014-03-17 23:25:09 -07:00
|
|
|
android:layout_height="match_parent"
|
2012-07-18 15:35:13 -07:00
|
|
|
android:drawSelectorOnTop="false"
|
|
|
|
android:scrollbarStyle="insideOverlay"
|
2014-01-16 00:36:05 -08:00
|
|
|
android:fadingEdgeLength="16dip"
|
2014-02-19 12:29:00 -08:00
|
|
|
android:divider="?conversation_list_item_divider"
|
2014-11-17 11:28:57 -08:00
|
|
|
android:headerDividersEnabled="false"
|
|
|
|
android:footerDividersEnabled="false"
|
2015-01-20 21:26:58 -10:00
|
|
|
android:dividerHeight="1px"
|
2015-02-27 15:46:01 -08:00
|
|
|
android:nextFocusDown="@+id/fab"
|
|
|
|
android:nextFocusForward="@+id/fab"
|
2015-01-20 21:26:58 -10:00
|
|
|
tools:listitem="@layout/conversation_list_item_view"/>
|
2012-07-18 15:35:13 -07:00
|
|
|
|
2015-01-20 21:26:58 -10:00
|
|
|
<com.melnykov.fab.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|right"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:src="@drawable/ic_add_white_24dp"
|
2015-02-27 15:46:01 -08:00
|
|
|
android:focusable="true"
|
|
|
|
android:contentDescription="@string/conversation_list_fragment__fab_content_description"
|
2015-01-20 21:26:58 -10:00
|
|
|
fab:fab_colorNormal="?fab_color"
|
|
|
|
fab:fab_colorPressed="@color/textsecure_primary_dark"
|
|
|
|
fab:fab_colorRipple="@color/textsecure_primary_dark" />
|
|
|
|
|
|
|
|
</FrameLayout>
|