aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/item_app_toggle.xml
diff options
context:
space:
mode:
authorRomain Hunault <romain.hunault@e.email>2022-03-23 15:36:21 +0000
committerRomain Hunault <romain.hunault@e.email>2022-03-23 15:36:21 +0000
commit82a45020557916da2a133df297eafc92f9f7c3db (patch)
tree2e12b5e39ac53ae05474c35bd16e2c2070d4a094 /app/src/main/res/layout/item_app_toggle.xml
parent335e504715d6730f701f5897e4cbc49cfdb9f69c (diff)
parenta9d8b2e6a4c45a62ae0b5cbf1e7682886f4360d1 (diff)
downloadadvanced-privacy-82a45020557916da2a133df297eafc92f9f7c3db.tar.gz
Merge branch 'use_system_resources' into 'main'
Use system theme colors. #5082 See merge request e/privacy-central/privacycentralapp!31
Diffstat (limited to 'app/src/main/res/layout/item_app_toggle.xml')
-rw-r--r--app/src/main/res/layout/item_app_toggle.xml46
1 files changed, 0 insertions, 46 deletions
diff --git a/app/src/main/res/layout/item_app_toggle.xml b/app/src/main/res/layout/item_app_toggle.xml
deleted file mode 100644
index 8bee0e2..0000000
--- a/app/src/main/res/layout/item_app_toggle.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/item_permission_apps"
- android:layout_height="wrap_content"
- android:layout_width="match_parent"
- android:paddingBottom="16dp"
- android:paddingLeft="32dp"
- android:paddingRight="32dp"
- android:paddingTop="16dp"
- >
-
- <ImageView
- android:id="@+id/app_icon"
- android:layout_alignParentStart="true"
- android:layout_centerVertical="true"
- android:layout_height="36dp"
- android:layout_width="36dp"
- android:src="@drawable/ic_facebook"
- />
-
- <TextView
- android:fontFamily="sans-serif-medium"
- android:id="@+id/app_title"
- android:layout_centerVertical="true"
- android:layout_height="wrap_content"
- android:layout_toEndOf="@+id/app_icon"
- android:layout_toStartOf="@+id/toggle"
- android:layout_width="match_parent"
- android:paddingEnd="32dp"
- android:paddingStart="32dp"
- android:textColor="@color/black"
- android:textSize="16sp"
- tools:text="Body sensor"
- />
-
- <Switch
- android:id="@+id/toggle"
- android:layout_alignParentEnd="true"
- android:layout_centerVertical="true"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
-
-</RelativeLayout> \ No newline at end of file