51 lines
No EOL
1.5 KiB
XML
51 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
<LinearLayout
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/downloadProgressLayout"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="4dp"
|
|
android:orientation="vertical"
|
|
android:padding="10dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
tools:showIn="@layout/maps_in_category_fragment">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/leftTextView"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
tools:text="@string/device_memory"/>
|
|
|
|
<TextView
|
|
android:id="@+id/rightTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
tools:text="@string/free"/>
|
|
</LinearLayout>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="20dp"
|
|
android:progressDrawable="?attr/size_progress_bar"
|
|
tools:progress="50"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|