layout_banner.xml 763 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="50dp"
  8. android:background="@color/xui_config_color_red"
  9. >
  10. <androidx.appcompat.widget.AppCompatTextView
  11. android:id="@+id/banner_txt"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:gravity="center"
  15. android:textSize="30sp"
  16. />
  17. </androidx.constraintlayout.widget.ConstraintLayout>