25 lines
812 B
XML
25 lines
812 B
XML
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="65sp"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
<com.android.systemui.statusbar.LatestItemView android:id="@+id/content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="64sp"
|
||
|
android:background="@android:drawable/status_bar_item_background"
|
||
|
android:focusable="true"
|
||
|
android:clickable="true"
|
||
|
android:paddingRight="6sp"
|
||
|
>
|
||
|
</com.android.systemui.statusbar.LatestItemView>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/divider_horizontal_light_opaque"
|
||
|
/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|