66 lines
No EOL
2.1 KiB
XML
66 lines
No EOL
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/activity_background_color"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/appbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<include layout="@layout/global_preference_toolbar" />
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/activity_background_color"
|
|
android:orientation="vertical">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/profiles_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clipToPadding="false"
|
|
android:paddingBottom="72dp"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/add_profile_btn"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:background="@drawable/fab_extended_drawable"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
|
|
<android.support.v7.widget.AppCompatImageView
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginLeft="14dp"
|
|
android:layout_marginStart="14dp"
|
|
android:src="@drawable/ic_action_plus"/>
|
|
|
|
<android.support.v7.widget.AppCompatTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/shared_string_add"
|
|
android:textColor="@color/color_white"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_marginEnd="20dp"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |