bssdk_activity_web.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. android:id="@+id/container"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. tools:context=".activity.BSSDKWebViewActivity">
  9. <RelativeLayout
  10. android:id="@+id/toolbar"
  11. android:layout_width="match_parent"
  12. android:layout_height="@dimen/DIMEN_45DP"
  13. android:background="@color/main_color">
  14. <ImageView
  15. android:id="@+id/iv_webview_back"
  16. android:layout_width="wrap_content"
  17. android:layout_height="match_parent"
  18. android:layout_centerVertical="true"
  19. android:paddingLeft="@dimen/DIMEN_20DP"
  20. android:paddingRight="@dimen/DIMEN_20DP"
  21. android:src="@drawable/bssdk_back_w" />
  22. <TextView
  23. android:id="@+id/toolbar_title"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_centerInParent="true"
  27. android:singleLine="true"
  28. android:textColor="@android:color/white"
  29. android:textSize="14sp"
  30. tools:text="234234" />
  31. </RelativeLayout>
  32. </LinearLayout>