aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/layout/config_list_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/config_list_fragment.xml')
-rw-r--r--app/src/main/res/layout/config_list_fragment.xml54
1 files changed, 0 insertions, 54 deletions
diff --git a/app/src/main/res/layout/config_list_fragment.xml b/app/src/main/res/layout/config_list_fragment.xml
deleted file mode 100644
index 627ecb86..00000000
--- a/app/src/main/res/layout/config_list_fragment.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto">
-
- <data>
-
- <!--suppress AndroidDomInspection -->
- <variable
- name="configs"
- type="com.wireguard.android.databinding.ObservableSortedMap&lt;String, com.wireguard.config.Config&gt;" />
- </data>
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <ListView
- android:id="@+id/config_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:choiceMode="singleChoice"
- app:items="@{configs}"
- app:layout="@{@layout/config_list_item}" />
-
- <com.getbase.floatingactionbutton.FloatingActionsMenu
- android:id="@+id/add_menu"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentEnd="true"
- android:layout_marginBottom="8dp"
- android:layout_marginEnd="8dp"
- app:fab_labelStyle="@style/fab_label"
- app:fab_labelsPosition="left">
-
- <com.getbase.floatingactionbutton.FloatingActionButton
- android:id="@+id/add_from_file"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:fab_icon="@drawable/ic_action_open"
- app:fab_size="mini"
- app:fab_title="@string/add_from_file" />
-
- <com.getbase.floatingactionbutton.FloatingActionButton
- android:id="@+id/add_from_scratch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:fab_icon="@drawable/ic_action_edit"
- app:fab_size="mini"
- app:fab_title="@string/add_from_scratch" />
- </com.getbase.floatingactionbutton.FloatingActionsMenu>
-
- </RelativeLayout>
-</layout>