| 123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <com.xzjmyk.pm.activity.view.shadow.ShadowLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- app:sl_cornerRadius="0dp"
- app:sl_dx="-1dp"
- app:sl_dy="3dp"
- app:sl_shadowColor="@color/shadow"
- app:sl_shadowRadius="3dp">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/shape_pop_ll"
- android:orientation="vertical"
- android:padding="0.5dp">
- <ListView
- android:id="@+id/mList"
- style="@style/ListViewBasic"
- android:layout_height="wrap_content"
- android:divider="@color/item_line"
- android:dividerHeight="0.1dp"></ListView>
- </LinearLayout>
- </com.xzjmyk.pm.activity.view.shadow.ShadowLayout>
|