50 lines
No EOL
1.9 KiB
XML
50 lines
No EOL
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/progress_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="end|center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="@dimen/md_content_padding_top"
|
|
android:paddingLeft="@dimen/md_dialog_frame_margin"
|
|
android:paddingRight="@dimen/md_dialog_frame_margin"
|
|
android:paddingTop="@dimen/md_content_padding_top">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/progress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="sans-serif"
|
|
android:gravity="start"
|
|
android:paddingLeft="16dp"
|
|
android:text="@string/loading_products"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
tools:ignore="RtlHardcoded,RtlSymmetry" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp"
|
|
android:paddingBottom="@dimen/md_content_padding_bottom"
|
|
android:paddingTop="@dimen/md_content_padding_top"
|
|
android:scrollbarStyle="outsideOverlay"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout> |