1234567891011121314151617181920212223242526272829 |
- <?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="45dp"
- android:orientation="vertical">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <ImageView
- android:id="@+id/img_view"
- android:layout_width="wrap_content"
- android:layout_centerVertical="true"
- android:layout_height="wrap_content"
- android:background="@mipmap/icon_syszcgl_wj" />
- <TextView
- android:id="@+id/tv_file_name"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="10dp"
- android:layout_toRightOf="@+id/img_view"
- android:maxLines="1"
- android:text="cehis0001"
- android:textColor="@color/purple_fa" />
- </RelativeLayout>
- </LinearLayout>
|