| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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="wrap_content"
- android:background="@color/white"
- android:gravity="center"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal" >
- <CheckBox
- android:id="@+id/imgCheck"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:button="@drawable/checkbox"
- android:checked="false"
- android:focusable="false"
- android:focusableInTouchMode="false" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="5dp"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/viewpager_img"
- android:layout_width="match_parent"
- android:layout_height="200dp" />
- </LinearLayout>
- </LinearLayout>
- <TextView
- android:id="@+id/pageNoTxt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="5dp"
- android:layout_marginTop="3dp"
- android:text="1/4" />
- </LinearLayout>
|