aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/layout-land
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2017-08-13 07:24:03 -0500
committerSamuel Holland <samuel@sholland.org>2017-08-13 07:24:03 -0500
commit20d314e800891df6d44ce5012739ba4d9c2a5e00 (patch)
treeeb765a1b961fefdaa7ddc3cfae9cb83a09e0c031 /app/src/main/res/layout-land
parentProfile: Add function to copy config from another profile (diff)
downloadwireguard-android-20d314e800891df6d44ce5012739ba4d9c2a5e00.tar.xz
wireguard-android-20d314e800891df6d44ce5012739ba4d9c2a5e00.zip
Major renaming and refactoring in activity and service
Apparently "configuration" is the proper term, not "profile".
Diffstat (limited to 'app/src/main/res/layout-land')
-rw-r--r--app/src/main/res/layout-land/config_activity.xml (renamed from app/src/main/res/layout-land/profile_list_activity.xml)8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/src/main/res/layout-land/profile_list_activity.xml b/app/src/main/res/layout-land/config_activity.xml
index 3f02dcca..b9c729fa 100644
--- a/app/src/main/res/layout-land/profile_list_activity.xml
+++ b/app/src/main/res/layout-land/config_activity.xml
@@ -1,19 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal">
<FrameLayout
- android:id="@+id/list_container"
+ android:id="@+id/master_fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<FrameLayout
- android:id="@+id/fragment_container"
+ android:id="@+id/detail_fragment"
android:layout_width="0dp"
android:layout_height="match_parent"
- android:layout_weight="2" />
+ android:layout_weight="2"
+ tools:ignore="InconsistentLayout" />
</LinearLayout>