12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <merge xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- tools:ignore="UnusedAttribute">
- <TextView
- android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:fontFamily="sans-serif"
- android:textSize="@dimen/md_content_textsize"
- android:layout_marginTop="4dp"
- android:layout_marginBottom="8dp"
- tools:text="Message"
- android:layout_gravity="center_horizontal" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <TextView
- android:id="@+id/minMax"
- android:layout_width="wrap_content"
- android:minWidth="48dp"
- android:layout_height="wrap_content"
- tools:text="50/100"
- android:textSize="14sp"
- android:layout_marginRight="12dp"
- android:layout_marginEnd="12dp"
- android:gravity="start"
- android:textAlignment="viewStart"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true"
- android:layout_centerVertical="true" />
- <ProgressBar
- android:id="@android:id/progress"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- style="?android:progressBarStyleHorizontal"
- android:layout_marginLeft="@dimen/md_dialog_frame_margin"
- android:layout_marginStart="@dimen/md_dialog_frame_margin"
- android:layout_marginBottom="@dimen/md_dialog_frame_margin"
- android:layout_toRightOf="@+id/minMax"
- android:layout_toEndOf="@+id/minMax"
- android:layout_toLeftOf="@+id/label"
- android:layout_toStartOf="@+id/label"
- android:layout_centerVertical="true" />
- <TextView
- android:id="@+id/label"
- android:layout_width="wrap_content"
- android:minWidth="36dp"
- android:layout_height="wrap_content"
- tools:text="100%"
- android:textSize="14sp"
- android:layout_marginLeft="12dp"
- android:layout_marginStart="12dp"
- android:gravity="end"
- android:textAlignment="viewEnd"
- android:layout_alignParentRight="true"
- android:layout_alignParentEnd="true"
- android:layout_centerVertical="true" />
- </RelativeLayout>
- </merge>
|