123456789101112131415161718192021222324252627282930313233343536 |
- <?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:gravity="center"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="350dp"
- android:layout_height="330dp"
- android:background="@drawable/cyloginb" >
- <WebView
- android:id="@+id/webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <ImageView
- android:id="@+id/iphoneback"
- android:layout_width="45dp"
- android:layout_height="45dp"
- android:layout_marginLeft="15dp"
- android:layout_marginTop="5dp"
- android:background="@drawable/cy_back" />
- <ImageView
- android:id="@+id/ivclose"
- android:layout_width="45dp"
- android:layout_height="45dp"
- android:layout_marginRight="15dp"
- android:layout_marginTop="5dp"
- android:visibility="gone"
- android:layout_alignParentRight="true"
- android:background="@drawable/cy_close" />
- </RelativeLayout>
- </LinearLayout>
|