dynamic_progress_item.xml 713 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:gravity="center"
    android:padding="20dp"
    android:layout_height="wrap_content">
    <ProgressBar
        style="@android:style/Widget.ProgressBar.Small"
        android:id="@+id/pb"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    <TextView
        android:id="@+id/text_con"
        android:layout_marginLeft="10dp"
        android:text="正在加载..."
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>