1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:background="#000000" >
- <Button
- android:id="@+id/pb_webview_back"
- android:layout_width="50dp"
- android:layout_height="match_parent"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:background="@color/pb_transparent"
- android:drawableLeft="@drawable/pb_icon_back"
- android:gravity="center"
- android:text="返回"
- android:textColor="#FFFFFF"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/pb_webview_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:textColor="#FFFFFF"
- android:textSize="18sp" />
-
- <ImageView
- android:id="@+id/pb_close"
- android:layout_width="19dp"
- android:layout_height="19dp"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:layout_alignParentRight="true"
- android:src="@drawable/pb_header_close" />
- </RelativeLayout>
- <FrameLayout
- android:id="@+id/pb_webview_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- </FrameLayout>
- </LinearLayout>
|