2012-07-18 22:35:13 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-01-21 07:26:58 +00: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 22:35:13 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-04-04 08:38:44 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
2014-03-18 06:25:09 +00:00
|
|
|
android:layout_height="match_parent"
|
2015-04-04 08:38:44 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ReminderView
|
|
|
|
android:id="@+id/reminder"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-04-09 21:37:55 +00:00
|
|
|
android:scrollbars="vertical"
|
2015-04-04 08:38:44 +00:00
|
|
|
android:nextFocusDown="@+id/fab"
|
|
|
|
android:nextFocusForward="@+id/fab"
|
|
|
|
tools:listitem="@layout/conversation_list_item_view" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2012-07-18 22:35:13 +00:00
|
|
|
|
2015-01-21 07:26:58 +00:00
|
|
|
<com.melnykov.fab.FloatingActionButton
|
2015-04-04 08:38:44 +00:00
|
|
|
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_create_white_24dp"
|
|
|
|
android:focusable="true"
|
|
|
|
android:contentDescription="@string/conversation_list_fragment__fab_content_description"
|
|
|
|
fab:fab_colorNormal="?fab_color"
|
|
|
|
fab:fab_colorPressed="@color/textsecure_primary_dark"
|
|
|
|
fab:fab_colorRipple="@color/textsecure_primary_dark" />
|
2015-01-21 07:26:58 +00:00
|
|
|
|
|
|
|
</FrameLayout>
|