diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout-land/profile_list_activity.xml | 7 | ||||
-rw-r--r-- | app/src/main/res/layout/profile_list_activity.xml | 7 | ||||
-rw-r--r-- | app/src/main/res/layout/profile_list_item.xml | 1 |
3 files changed, 7 insertions, 8 deletions
diff --git a/app/src/main/res/layout-land/profile_list_activity.xml b/app/src/main/res/layout-land/profile_list_activity.xml index dc7b5c3b..3f02dcca 100644 --- a/app/src/main/res/layout-land/profile_list_activity.xml +++ b/app/src/main/res/layout-land/profile_list_activity.xml @@ -5,12 +5,11 @@ android:baselineAligned="false" android:orientation="horizontal"> - <fragment - android:name="com.wireguard.android.ProfileListFragment" + <FrameLayout + android:id="@+id/list_container" android:layout_width="0dp" android:layout_height="match_parent" - android:layout_weight="1" - android:tag="list" /> + android:layout_weight="1" /> <FrameLayout android:id="@+id/fragment_container" diff --git a/app/src/main/res/layout/profile_list_activity.xml b/app/src/main/res/layout/profile_list_activity.xml index f66a0cb3..41d772a7 100644 --- a/app/src/main/res/layout/profile_list_activity.xml +++ b/app/src/main/res/layout/profile_list_activity.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> -<fragment xmlns:android="http://schemas.android.com/apk/res/android" - android:name="com.wireguard.android.ProfileListFragment" +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/list_container" android:layout_width="match_parent" - android:layout_height="match_parent" - android:tag="list" /> + android:layout_height="match_parent" /> diff --git a/app/src/main/res/layout/profile_list_item.xml b/app/src/main/res/layout/profile_list_item.xml index 10d0c14b..22e93f5c 100644 --- a/app/src/main/res/layout/profile_list_item.xml +++ b/app/src/main/res/layout/profile_list_item.xml @@ -11,6 +11,7 @@ <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" + android:background="?android:attr/activatedBackgroundIndicator" android:padding="16dp"> <TextView |