| 1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="utf-8"?>
- <layout>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingHorizontal="29dp"
- android:background="@color/app_color_black"
- android:paddingVertical="10dp"
- android:orientation="vertical">
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#2EB242"
- android:textSize="10sp" />
- <TextView
- android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:textColor="#ff40FF5E"
- android:textSize="14sp" />
- </LinearLayout>
- </layout>
|