diff options
author | Aayush Gupta <theimpulson@e.email> | 2022-05-06 12:33:53 +0000 |
---|---|---|
committer | Aayush Gupta <theimpulson@e.email> | 2022-05-06 12:33:53 +0000 |
commit | 124864fb715c437c6ca16f7bbf051c96748211b4 (patch) | |
tree | cd5b3a9ebde6f9d52ce17b8f8684b0e4ae9a116d /app/src/main/res/layout | |
parent | aa2d67340959570e7347cb92c2c2664eba1737a8 (diff) | |
parent | 68f64614c7922dfb79e6ce2ae5d9c8a9b1d90383 (diff) |
Merge branch '238-auto_adapt_text_color' into 'main'
Add support for auto adapt text color in light mode for widget
See merge request e/privacy-central/privacycentralapp!54
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/widget.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/src/main/res/layout/widget.xml b/app/src/main/res/layout/widget.xml index 999a888..d2d8490 100644 --- a/app/src/main/res/layout/widget.xml +++ b/app/src/main/res/layout/widget.xml @@ -29,6 +29,7 @@ android:orientation="horizontal" android:gravity="center_vertical"> <TextView + android:id="@+id/widget_title" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" @@ -93,6 +94,7 @@ android:orientation="vertical" > <TextView + android:id="@+id/trackers_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/dashboard_state_trackers_label" @@ -118,6 +120,7 @@ android:orientation="vertical" > <TextView + android:id="@+id/geolocation_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/dashboard_state_geolocation_label" @@ -143,6 +146,7 @@ android:orientation="vertical" > <TextView + android:id="@+id/ip_address_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/dashboard_state_ipaddress_label" |