widget_pns_action_bar.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  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="@dimen/pns_action_bar_height"
  6. android:background="@color/pns_action_bar_background"
  7. tools:layout_height="90dp">
  8. <ImageView
  9. android:id="@id/pns_nav_return"
  10. android:layout_width="30dp"
  11. android:layout_height="30dp"
  12. android:layout_alignParentLeft="true"
  13. android:layout_centerVertical="true"
  14. android:layout_marginLeft="12dp"
  15. android:elevation="1000dp"
  16. android:scaleType="fitXY"
  17. android:src="@drawable/authsdk_return_bg" />
  18. <TextView
  19. android:id="@id/pns_nav_title"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_centerInParent="true"
  23. android:elevation="1000dp"
  24. android:gravity="center"
  25. android:textColor="@android:color/white"
  26. android:textSize="25dp"
  27. tools:text="绑定手机" />
  28. </RelativeLayout>