authsdk_dialog_layout.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <RelativeLayout
  7. android:id="@+id/authsdk_title_rl"
  8. android:layout_width="match_parent"
  9. android:layout_height="50dp"
  10. android:gravity="center_vertical"
  11. android:background="#026ED2">
  12. <ImageButton
  13. android:id="@+id/authsdk_back_btn"
  14. android:layout_width="30dp"
  15. android:layout_height="30dp"
  16. android:layout_marginLeft="12dp"
  17. android:layout_alignParentLeft="true"
  18. android:layout_centerVertical="true"
  19. android:src="@drawable/authsdk_return_bg"/>
  20. <TextView
  21. android:id="@+id/authsdk_title_tv"
  22. android:layout_width="wrap_content"
  23. android:layout_marginLeft="30dp"
  24. android:layout_marginRight="30dp"
  25. android:layout_height="wrap_content"
  26. android:layout_centerInParent="true"
  27. android:textSize="18sp"
  28. android:textColor="#ffffff"/>
  29. </RelativeLayout>
  30. <ProgressBar
  31. android:id="@+id/authsdk_progressBar"
  32. style="?android:attr/progressBarStyleHorizontal"
  33. android:layout_width="match_parent"
  34. android:layout_height="4dp"
  35. android:layout_gravity="top"
  36. android:visibility="gone"/>
  37. <WebView
  38. android:id="@+id/authsdk_webview"
  39. android:layout_width="match_parent"
  40. android:layout_height="match_parent"
  41. android:fadingEdge="none"
  42. android:overScrollMode="never"/>
  43. </LinearLayout>