mall_web.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical" >
  7. <ProgressBar
  8. android:id="@+id/webProgress"
  9. style="?android:attr/progressBarStyleHorizontal"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_alignParentTop="true"
  13. android:maxHeight="3dip"
  14. android:minHeight="3dip"/>
  15. <com.plugin.fitfun.activity.MallWebView
  16. android:id="@+id/webview"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:layout_below="@id/webProgress" />
  20. <Button
  21. android:id="@+id/back_to_top"
  22. android:layout_width="30dp"
  23. android:layout_height="30dp"
  24. android:layout_alignParentBottom="true"
  25. android:layout_alignParentRight="true"
  26. android:layout_marginBottom="103dp"
  27. android:layout_marginRight="23dp"
  28. android:background="@drawable/back_to_top"/>
  29. <Button
  30. android:id="@+id/back_to_front_page"
  31. android:layout_width="30dp"
  32. android:layout_height="30dp"
  33. android:layout_alignParentBottom="true"
  34. android:layout_alignParentRight="true"
  35. android:layout_marginBottom="63dp"
  36. android:layout_marginRight="23dp"
  37. android:background="@drawable/back_to_front_page"/>
  38. <Button
  39. android:id="@+id/back_to_front_activity"
  40. android:layout_width="30dp"
  41. android:layout_height="30dp"
  42. android:layout_alignParentBottom="true"
  43. android:layout_alignParentRight="true"
  44. android:layout_marginBottom="23dp"
  45. android:layout_marginRight="23dp"
  46. android:background="@drawable/close_activity"/>
  47. </RelativeLayout>