diff --git a/app/src/main/java/org/fdroid/fdroid/views/updates/items/UpdateableAppsHeader.java b/app/src/main/java/org/fdroid/fdroid/views/updates/items/UpdateableAppsHeader.java
index 5e5b6a971..beebd062d 100644
--- a/app/src/main/java/org/fdroid/fdroid/views/updates/items/UpdateableAppsHeader.java
+++ b/app/src/main/java/org/fdroid/fdroid/views/updates/items/UpdateableAppsHeader.java
@@ -69,16 +69,16 @@ public class UpdateableAppsHeader extends AppUpdateData {
private UpdateableAppsHeader header;
private final TextView updatesAvailable;
- private final ImageView downloadAll;
private final TextView appsToUpdate;
+ private final Button downloadAll;
private final Button toggleAppsToUpdate;
public ViewHolder(View itemView) {
super(itemView);
updatesAvailable = (TextView) itemView.findViewById(R.id.text_updates_available);
- downloadAll = (ImageView) itemView.findViewById(R.id.button_download_all);
appsToUpdate = (TextView) itemView.findViewById(R.id.text_apps_to_update);
+ downloadAll = (Button) itemView.findViewById(R.id.button_download_all);
toggleAppsToUpdate = (Button) itemView.findViewById(R.id.button_toggle_apps_to_update);
toggleAppsToUpdate.setOnClickListener(new View.OnClickListener() {
diff --git a/app/src/main/res/layout/updateable_app_list_item.xml b/app/src/main/res/layout/updateable_app_list_item.xml
index 4e7c1c59e..618ede394 100644
--- a/app/src/main/res/layout/updateable_app_list_item.xml
+++ b/app/src/main/res/layout/updateable_app_list_item.xml
@@ -5,25 +5,20 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:paddingStart="24dp"
- android:paddingLeft="24dp"
tools:ignore="RtlSymmetry">
+ android:layout_margin="16dp"
+ tools:ignore="ContentDescription"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
diff --git a/app/src/main/res/layout/updates_header.xml b/app/src/main/res/layout/updates_header.xml
index 4cff7123f..88edde404 100644
--- a/app/src/main/res/layout/updates_header.xml
+++ b/app/src/main/res/layout/updates_header.xml
@@ -1,35 +1,25 @@
+ android:background="?appDetailsCardBackground">
-
-
+ android:layout_marginEnd="16dp"
+ android:layout_marginRight="16dp"
+ tools:text="Download updates for 3 apps"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toStartOf="@+id/button_download_all"
+ app:layout_constraintTop_toTopOf="parent" />
+
+
-
+ android:textColor="@color/fdroid_blue"
+ android:textAllCaps="true"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toBottomOf="@+id/text_apps_to_update" />
\ No newline at end of file