xqt_payview.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. xmlns:imagecontrol="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:orientation="vertical" >
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="45dip"
  11. android:background="#37a1ff"
  12. android:orientation="horizontal" >
  13. <ImageView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:layout_centerInParent="true"
  17. android:src="@drawable/zfb_title" />
  18. <TextView
  19. android:id="@+id/xqt_payview_back"
  20. android:layout_width="wrap_content"
  21. android:layout_height="match_parent"
  22. android:layout_alignParentRight="true"
  23. android:layout_centerVertical="true"
  24. android:gravity="center"
  25. android:paddingRight="10dip"
  26. android:text="返回"
  27. android:textColor="@android:color/white"
  28. android:textSize="15dip" />
  29. </RelativeLayout>
  30. <WebView
  31. android:id="@+id/xqt_payview_webview"
  32. android:layout_width="match_parent"
  33. android:layout_height="match_parent" />
  34. </LinearLayout>