1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:orientation="horizontal" 3 android:gravity="center" 4 android:layout_height="72dp" 5 android:layout_width="match_parent"> 6 7 <ImageView android:id="@+id/appicon" 8 android:contentDescription="App Icon" 9 android:layout_width="32dp" 10 android:layout_height="32dp" 11 android:layout_marginEnd="16dp" 12 android:layout_marginStart="24dp" 13 android:scaleType="fitCenter" 14 android:gravity="center_vertical"/> 15 16 <TextView android:id="@+id/applabel" 17 android:textAppearance="?android:attr/textAppearanceMedium" 18 android:textColor="?android:attr/textColorPrimary" 19 android:layout_width="match_parent" 20 android:layout_height="32dp" 21 android:gravity="center_vertical|start" 22 android:minLines="2" 23 android:maxLines="2" 24 android:paddingStart="4dip" 25 android:paddingEnd="4dip" /> 26 <ImageView android:id="@+id/banner" 27 android:contentDescription="Banner" 28 android:layout_height="32dp" 29 android:layout_width="32dp" 30 android:layout_marginEnd="16dp" 31 android:layout_marginStart="24dp" 32 android:gravity="center" /> 33</LinearLayout>