custom_switch_other.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content">
  5. <RelativeLayout
  6. android:id="@+id/container_other"
  7. android:layout_width="200dp"
  8. android:layout_height="wrap_content"
  9. android:orientation="horizontal"
  10. android:layout_marginRight="30dp"
  11. android:layout_alignParentRight="true">
  12. <View
  13. android:layout_width="20dp"
  14. android:layout_height="1dp"
  15. android:background="@android:color/darker_gray"
  16. android:layout_alignParentLeft="true"
  17. android:layout_centerVertical="true"/>
  18. <View
  19. android:layout_width="20dp"
  20. android:layout_height="1dp"
  21. android:background="@android:color/darker_gray"
  22. android:layout_alignParentRight="true"
  23. android:layout_centerVertical="true"/>
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:textColor="@android:color/darker_gray"
  28. android:textSize="12sp"
  29. android:text="其他方式登录"
  30. android:layout_centerInParent="true"/>
  31. </RelativeLayout>
  32. </RelativeLayout>