From 9035bac3ff801bb982bf54b02c0e9850d6afbc22 Mon Sep 17 00:00:00 2001 From: jacquarg Date: Thu, 28 Oct 2021 22:35:19 +0200 Subject: Update dashboard UI and feature --- app/src/main/res/drawable/ic_apps_permissions.xml | 36 +- app/src/main/res/drawable/ic_internet_activity.xml | 48 ++- app/src/main/res/drawable/ic_my_location.xml | 36 +- app/src/main/res/drawable/ic_privacy_toggle.xml | 22 - app/src/main/res/drawable/ic_quick_privacy_off.png | Bin 0 -> 99093 bytes app/src/main/res/drawable/ic_quick_privacy_on.png | Bin 0 -> 90230 bytes app/src/main/res/drawable/ic_tracked.xml | 63 ++- .../res/layout/dashboard_item_submenu_button.xml | 83 ++++ app/src/main/res/layout/fragment_dashboard.xml | 472 ++++++++------------- .../layout/fragment_internet_activity_policy.xml | 2 +- app/src/main/res/values/colors.xml | 12 + app/src/main/res/values/strings.xml | 42 +- app/src/main/res/values/themes.xml | 4 + 13 files changed, 415 insertions(+), 405 deletions(-) delete mode 100644 app/src/main/res/drawable/ic_privacy_toggle.xml create mode 100644 app/src/main/res/drawable/ic_quick_privacy_off.png create mode 100644 app/src/main/res/drawable/ic_quick_privacy_on.png create mode 100644 app/src/main/res/layout/dashboard_item_submenu_button.xml (limited to 'app/src/main/res') diff --git a/app/src/main/res/drawable/ic_apps_permissions.xml b/app/src/main/res/drawable/ic_apps_permissions.xml index b7eb1ab..5e7a570 100644 --- a/app/src/main/res/drawable/ic_apps_permissions.xml +++ b/app/src/main/res/drawable/ic_apps_permissions.xml @@ -1,22 +1,16 @@ - - - - - + + + + diff --git a/app/src/main/res/drawable/ic_internet_activity.xml b/app/src/main/res/drawable/ic_internet_activity.xml index ef34960..83695ad 100644 --- a/app/src/main/res/drawable/ic_internet_activity.xml +++ b/app/src/main/res/drawable/ic_internet_activity.xml @@ -1,22 +1,28 @@ - - - - - + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_my_location.xml b/app/src/main/res/drawable/ic_my_location.xml index 3b04dc4..5d70d16 100644 --- a/app/src/main/res/drawable/ic_my_location.xml +++ b/app/src/main/res/drawable/ic_my_location.xml @@ -1,22 +1,16 @@ - - - - - + + + + diff --git a/app/src/main/res/drawable/ic_privacy_toggle.xml b/app/src/main/res/drawable/ic_privacy_toggle.xml deleted file mode 100644 index 6a0f647..0000000 --- a/app/src/main/res/drawable/ic_privacy_toggle.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - diff --git a/app/src/main/res/drawable/ic_quick_privacy_off.png b/app/src/main/res/drawable/ic_quick_privacy_off.png new file mode 100644 index 0000000..90f1b04 Binary files /dev/null and b/app/src/main/res/drawable/ic_quick_privacy_off.png differ diff --git a/app/src/main/res/drawable/ic_quick_privacy_on.png b/app/src/main/res/drawable/ic_quick_privacy_on.png new file mode 100644 index 0000000..99f6719 Binary files /dev/null and b/app/src/main/res/drawable/ic_quick_privacy_on.png differ diff --git a/app/src/main/res/drawable/ic_tracked.xml b/app/src/main/res/drawable/ic_tracked.xml index 9aa4736..6cef537 100644 --- a/app/src/main/res/drawable/ic_tracked.xml +++ b/app/src/main/res/drawable/ic_tracked.xml @@ -1,22 +1,43 @@ - - - - - + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/dashboard_item_submenu_button.xml b/app/src/main/res/layout/dashboard_item_submenu_button.xml new file mode 100644 index 0000000..8802bca --- /dev/null +++ b/app/src/main/res/layout/dashboard_item_submenu_button.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index effd992..077eaf1 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -1,26 +1,16 @@ + - - - - @@ -30,314 +20,222 @@ android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" - tools:context=".main.MainActivity" > - - - - - - - + - - + - - - - - - - - - - - - + - - + - - - - - - - - - - - - + - - + - - - - + android:text="@string/dashboard_state_ipaddress_off" + android:textSize="12sp" + android:textColor="@color/black_text" + android:textAllCaps="true" + /> + + - - - - + + - + + + + + + + + + + - - - - - - - - - + android:src="@drawable/dummy_leakage_analytics" + app:layout_constraintTop_toBottomOf="@+id/graph_period" + /> + + + + - - + + - + + + + - \ No newline at end of file + + \ No newline at end of file diff --git a/app/src/main/res/layout/fragment_internet_activity_policy.xml b/app/src/main/res/layout/fragment_internet_activity_policy.xml index 12094ab..2c7e102 100644 --- a/app/src/main/res/layout/fragment_internet_activity_policy.xml +++ b/app/src/main/res/layout/fragment_internet_activity_policy.xml @@ -57,7 +57,7 @@ android:layout_width="wrap_content" android:paddingBottom="8dp" android:paddingTop="16dp" - android:text="@string/internet_activity_privacy_title" + android:text="@string/dashboard_internet_activity_privacy_title" android:textColor="@color/black" android:textSize="14sp" /> diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index 4f45122..2a16240 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -9,4 +9,16 @@ #FFFFFFFF @lineageos.platform:color/color_default_accent + + #DE000000 + + #99000000 + #61000000 + #14212121 + + #FC7222 + #169659 + + + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index d18ccf5..f6bcf72 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1,17 +1,37 @@ PrivacyCentralApp - Privacy dashboard helps you control and better protect your privacy - Tap to enable quick privacy protection - Personal data leakage over past 24 hours. - Am I tracked? - Currently there are %1$d trackers in your apps, %2$d trackers are active - Apps Permissions - %1$d apps are requesting %2$d permissions - My Location - "%1$d apps are using location permission\nCurrent location mode: " + + + Quick Privacy + Your online privacy is not protected + Your online privacy is now protected! + Tap to enable your privacy preferences + Trackers: + Vulnerable + Denied + Geolocation: + Exposed + Fake + IP address: + Exposed + Hidden + Personal data leakage + Last 24 hours + %d hits + + Am I tracked? + %1$d app trackers, %2$d active trackers + Apps Permissions + Manage your permissions + Geolocation mode + Real geolocation + Fake geolocation + My internet activity privacy + Real IP address exposed + Real IP address hidden + + Internet Activity Privacy - My Internet Activity Privacy - "Current internet activity mode: " Quick protection enables these settings when turned on - All trackers are turned off.\n- Your geolocation will be faked.\n- Your real IP address will be hidden. Learn more diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index 3a7bad8..1e20ab1 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -8,5 +8,9 @@ #007fff + @color/black_text + 16sp + + \ No newline at end of file -- cgit v1.2.1