2017-08-02 17:44:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-09-26 14:53:41 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-08-02 17:44:36 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/toot_show_accounts"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/toot_lv_accounts"
|
|
|
|
android:dividerHeight="0dp"
|
|
|
|
android:divider="@null"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/toot_close_accounts"
|
2018-09-26 14:53:41 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-08-02 17:44:36 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
app:fabSize="mini"
|
|
|
|
android:layout_margin="@dimen/fab_margin"
|
2018-09-26 14:53:41 +02:00
|
|
|
app:srcCompat="@drawable/ic_close"
|
|
|
|
tools:ignore="VectorDrawableCompat" />
|
2017-08-02 17:44:36 +02:00
|
|
|
</RelativeLayout>
|