c8ae33d9ba
Author: Timi Rautamaki <timi.rautamaki@gmail.com> Date: Wed Oct 13 16:06:51 2021 +0000 Updater: add a 3-dot menu for update item A menu opening with only a long press is not intuitive and often not found by user. Change-Id: I7f819b77e2cbc534cafe488edadc4d3dd9b87d01 Author: Luca Stefani <luca.stefani.ge1@gmail.com> Date: Mon Nov 1 21:01:11 2021 +0100 fixup! Updater: add a 3-dot menu for update item Change-Id: I10fe453c5f14d1a0ca49b734df517047cb7ee802 Change-Id: I8abf95327906bd6d3fb98978b931418f15d3dd00
103 lines
4.0 KiB
XML
103 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="true"
|
|
android:foreground="?attr/selectableItemBackground"
|
|
android:nextFocusRight="@+id/update_action"
|
|
app:cardCornerRadius="0dp"
|
|
app:contentPadding="16dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal"
|
|
android:weightSum="1">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/build_version"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:alpha="0.87"
|
|
android:drawablePadding="8dp"
|
|
android:maxLines="1"
|
|
android:paddingBottom="8sp"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="16sp"
|
|
tools:text="LineageOS 15.1" />
|
|
|
|
<TextView
|
|
android:id="@+id/build_date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:textSize="14sp"
|
|
tools:text="29 February 2018" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress_bar"
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="4sp"
|
|
android:visibility="invisible"
|
|
tools:progress="65"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/progress_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/progress_bar"
|
|
android:ellipsize="marquee"
|
|
android:singleLine="true"
|
|
android:visibility="invisible"
|
|
tools:text="162 of 300 MB (3 minutes left) • 65%"
|
|
tools:visibility="visible" />
|
|
|
|
<TextView
|
|
android:id="@+id/build_size"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="8sp"
|
|
android:singleLine="true"
|
|
tools:text="300 MB"
|
|
tools:visibility="invisible" />
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<ImageButton
|
|
android:id="@+id/update_menu"
|
|
style="?android:attr/actionOverflowButtonStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:padding="8dp" />
|
|
<Button
|
|
android:id="@id/update_action"
|
|
style="@style/Widget.AppCompat.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="8dp"
|
|
tools:text="Pause" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|