1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:layout_width="match_parent" 3 android:layout_height="65sp" 4 android:orientation="vertical" 5 > 6 7 <com.android.systemui.statusbar.LatestItemView android:id="@+id/content" 8 android:layout_width="match_parent" 9 android:layout_height="64sp" 10 android:background="@android:drawable/status_bar_item_background" 11 android:focusable="true" 12 android:clickable="true" 13 android:paddingRight="6sp" 14 > 15 </com.android.systemui.statusbar.LatestItemView> 16 17 <View 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content" 20 android:background="@drawable/divider_horizontal_light_opaque" 21 /> 22 23</LinearLayout> 24 25