2017-11-06 11:49:28 +00:00
|
|
|
<?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"
|
2017-11-08 15:53:52 +00:00
|
|
|
android:minWidth="120dp"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="12dp"
|
|
|
|
|
android:paddingEnd="12dp"
|
2017-11-06 11:49:28 +00:00
|
|
|
android:paddingTop="4dp"
|
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/classIconView"
|
|
|
|
|
android:layout_width="32dp"
|
|
|
|
|
android:layout_height="32dp"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginEnd="8dp"/>
|
2017-11-06 11:49:28 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView"
|
|
|
|
|
android:layout_width="wrap_content"
|
2017-11-08 15:53:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:lines="1"/>
|
2017-11-06 11:49:28 +00:00
|
|
|
</LinearLayout>
|