| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:textSize="@dimen/textsize_14" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/progressname"
- android:layout_width="100dp"
- android:layout_height="60dp"
- android:layout_marginLeft="8dp"
- android:gravity="center"
- android:text=""
- android:textSize="@dimen/textsize_14"
- android:visibility="gone" />
- <TextView
- android:id="@+id/progress1"
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:gravity="center"
- android:paddingLeft="15dip"
- android:paddingTop="8dip"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- </LinearLayout>
|