hms_game_top_async_login.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:id="@+id/login_notice_view">
  6. <RelativeLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="60dp"
  9. android:background="#b3ffffff">
  10. <LinearLayout
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_centerInParent="true"
  14. android:layout_marginTop="14dp"
  15. android:layout_marginBottom="14dp"
  16. android:layout_marginLeft="12dp"
  17. android:layout_marginRight="12dp"
  18. android:orientation="horizontal">
  19. <ImageView
  20. android:layout_width="32dp"
  21. android:layout_height="32dp"
  22. android:src="@drawable/c_buoycircle_icon"/>
  23. <TextView
  24. android:id="@+id/top_notice_text"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_marginLeft="8dp"
  28. android:ellipsize="end"
  29. android:singleLine="true"
  30. android:textSize="14dp"
  31. android:textColor="#000000"
  32. android:alpha="0.85"
  33. android:layout_gravity="center_vertical"/>
  34. </LinearLayout>
  35. </RelativeLayout>
  36. </FrameLayout>