1 | <?xml version="1.0" encoding="utf-8"?> |
---|
2 | <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
---|
3 | android:layout_height="fill_parent" android:layout_width="fill_parent"> |
---|
4 | <org.webstrips.android.StripPane class="org.webstrips.android.StripPane" |
---|
5 | android:layout_width="fill_parent" android:layout_height="fill_parent" |
---|
6 | android:padding="10dip" android:scrollbars="vertical" |
---|
7 | android:fadingEdge="vertical" android:id="@+id/comicPane"> |
---|
8 | </org.webstrips.android.StripPane> |
---|
9 | <RelativeLayout android:id="@+id/comicCenterLayout" |
---|
10 | android:layout_gravity="center" android:layout_height="fill_parent" |
---|
11 | android:layout_width="fill_parent"> |
---|
12 | <ProgressBar android:layout_width="wrap_content" |
---|
13 | android:layout_height="wrap_content" android:layout_centerInParent="true" |
---|
14 | android:id="@+id/transferProgress" android:max="100"></ProgressBar> |
---|
15 | </RelativeLayout> |
---|
16 | <RelativeLayout android:id="@+id/viewer.overlaylayout" |
---|
17 | android:layout_height="fill_parent" android:layout_width="fill_parent" |
---|
18 | android:visibility="visible"> |
---|
19 | <ImageView android:id="@+id/ImageView01" |
---|
20 | android:layout_height="wrap_content" android:layout_width="wrap_content" |
---|
21 | android:src="@drawable/overlay_previous" |
---|
22 | android:layout_centerVertical="true" android:layout_marginLeft="5px"></ImageView> |
---|
23 | <RelativeLayout android:layout_height="wrap_content" |
---|
24 | android:id="@+id/RelativeLayout01" android:layout_alignParentTop="true" |
---|
25 | android:layout_width="fill_parent" android:padding="5px" |
---|
26 | android:background="#99FFFFFF"> |
---|
27 | <TextView android:layout_height="wrap_content" |
---|
28 | android:layout_above="@+id/ImageView01" android:id="@+id/view.title" |
---|
29 | android:text="aaa" android:textStyle="bold" android:lines="1" |
---|
30 | android:layout_width="fill_parent" android:textColor="#FF000000"></TextView> |
---|
31 | </RelativeLayout> |
---|
32 | <ImageView android:id="@+id/ImageView03" |
---|
33 | android:layout_width="wrap_content" android:layout_height="wrap_content" |
---|
34 | android:src="@drawable/overlay_next" android:layout_gravity="right" |
---|
35 | android:layout_alignParentRight="true" android:layout_centerVertical="true" |
---|
36 | android:layout_marginRight="5px"></ImageView> |
---|
37 | |
---|
38 | |
---|
39 | |
---|
40 | </RelativeLayout> |
---|
41 | </FrameLayout> |
---|