diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-05-04 17:49:54 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2022-05-04 17:49:54 +0000 |
commit | 9cdbb2a5f84eb38e922b9fa21126295161323f75 (patch) | |
tree | e0d30b1c502b96390fad542215e506f71ed5fd76 /app/src/main/res/layout/fragment_dashboard.xml | |
parent | fa5d60f99a07911a13c579074affd646973655b6 (diff) | |
parent | b9b0f890b95ff1674d4e8e9396a16a68d82829e7 (diff) |
Merge branch '219_highlight_trackers' into 'main'
219 highlight active trackers
See merge request e/privacy-central/privacycentralapp!51
Diffstat (limited to 'app/src/main/res/layout/fragment_dashboard.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_dashboard.xml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index d79dea1..f6beca6 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -30,7 +30,7 @@ android:layout_height="25dp" android:layout_width="24dp" android:layout_margin="16dp" - android:src="@drawable/ic_shield_off" + android:src="@drawable/ic_shield_off_white" android:scaleType="fitCenter" /> <TextView @@ -248,6 +248,21 @@ android:text="@string/dashboard_state_ipaddress_off" /> <TextView + android:id="@+id/leaking_app_button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="12sp" + android:textColor="@color/primary_text" + android:drawableEnd="@drawable/ic_chevron_right_24dp" + android:text="@string/dashboard_graph_leaking_app" + app:layout_constraintRight_toRightOf="parent" + app:layout_constraintBottom_toBottomOf="@+id/graph_legend_blocked_icon" + app:layout_constraintTop_toTopOf="@+id/graph_legend_blocked_icon" + android:gravity="center_vertical|end" + android:layout_marginRight="16dp" + /> + + <TextView android:id="@+id/graph_empty" android:layout_width="match_parent" android:layout_height="wrap_content" |