2022-02-01 23:38:08 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-05-06 20:34:28 +02:00
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-05-06 10:41:07 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2025-05-06 20:34:28 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-02-01 23:38:08 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-17 20:43:06 +02:00
|
|
|
android:clipChildren="false"
|
|
|
|
android:clipToPadding="false"
|
2025-05-06 10:41:07 +02:00
|
|
|
app:cardCornerRadius="24dp"
|
|
|
|
app:cardElevation="4dp"
|
2025-05-17 20:43:06 +02:00
|
|
|
android:padding="24dp"
|
2025-05-15 09:13:23 +02:00
|
|
|
app:cardBackgroundColor="?attr/colorSurface">
|
2022-02-01 23:38:08 +03:00
|
|
|
|
2025-05-06 21:04:16 +02:00
|
|
|
<LinearLayout
|
2022-02-01 23:38:08 +03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2025-05-06 21:04:16 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/description"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
|
|
android:textAlignment="center"
|
|
|
|
tools:text="Popup text" />
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="3dp"
|
|
|
|
android:layout_marginStart="12dp"
|
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:indeterminate="false"
|
|
|
|
android:max="100"
|
2025-05-15 09:13:23 +02:00
|
|
|
style="@android:style/Widget.ProgressBar.Horizontal"/>
|
2025-05-06 21:04:16 +02:00
|
|
|
</LinearLayout>
|
2025-05-06 10:41:07 +02:00
|
|
|
</com.google.android.material.card.MaterialCardView>
|