26 lines
902 B
XML
Executable File
26 lines
902 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/text_blue"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:padding="3dp">
|
|
|
|
<ImageView
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:background="@drawable/ic_user_default" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
android:text="张三"
|
|
android:textColor="@color/white" />
|
|
</LinearLayout>
|
|
</LinearLayout> |