1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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" >
-
- <ProgressBar
- android:id="@+id/webProgress"
- style="?android:attr/progressBarStyleHorizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:maxHeight="3dip"
- android:minHeight="3dip"/>
-
- <com.plugin.fitfun.activity.MallWebView
- android:id="@+id/webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/webProgress" />
- <Button
- android:id="@+id/back_to_top"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:layout_marginBottom="103dp"
- android:layout_marginRight="23dp"
- android:background="@drawable/back_to_top"/>
-
- <Button
- android:id="@+id/back_to_front_page"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:layout_marginBottom="63dp"
- android:layout_marginRight="23dp"
- android:background="@drawable/back_to_front_page"/>
-
- <Button
- android:id="@+id/back_to_front_activity"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:layout_marginBottom="23dp"
- android:layout_marginRight="23dp"
- android:background="@drawable/close_activity"/>
- </RelativeLayout>
|