Commit efbb3ab2 authored by Viktor De Pasquale's avatar Viktor De Pasquale

Fixed red tint regarding system security not being spanned across the whole card

parent b0e7c655
...@@ -109,19 +109,11 @@ ...@@ -109,19 +109,11 @@
android:background="@drawable/bg_card" android:background="@drawable/bg_card"
android:orientation="horizontal"> android:orientation="horizontal">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/home_device_overview"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<View <View
gone="@{XAndroidKt.isDeviceSecure()}" gone="@{XAndroidKt.isDeviceSecure()}"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="0dp" android:layout_height="0dp"
android:alpha=".3" android:alpha=".15"
android:background="?colorError" android:background="?colorError"
android:visibility="gone" android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
...@@ -129,6 +121,14 @@ ...@@ -129,6 +121,14 @@
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/home_device_overview"
android:layout_width="wrap_content"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatImageView <androidx.appcompat.widget.AppCompatImageView
android:id="@+id/home_device_icon" android:id="@+id/home_device_icon"
style="?styleIconPrimary" style="?styleIconPrimary"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment