12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal"
- android:background="@color/grayslate">
- <ImageView
- android:id="@+id/tip_img"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="5px"/>
- <TextView
- android:id="@+id/group_msg"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingLeft="40px"
- android:paddingTop="3px"
- android:paddingBottom="3px"
- android:textSize="20sp"
- android:text="No data"
- />
- </LinearLayout>
|