19 lines
670 B
XML
19 lines
670 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout android:id="@+id/topShadowView"
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?attr/ctx_menu_info_view_bg"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="16dp"/>
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:scaleType="fitXY"
|
||
|
android:src="@drawable/bg_shadow_list_top"/>
|
||
|
|
||
|
</LinearLayout>
|