123456789101112131415161718192021 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:background="@color/xui_config_color_red"
- >
- <androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/banner_txt"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:textSize="30sp"
- />
- </androidx.constraintlayout.widget.ConstraintLayout>
|