123456789101112131415161718192021222324252627 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/ll_pw"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="@drawable/huosdk_bg_bord_rect_2"
- android:gravity="center_vertical"
- android:elevation="5dp"
- android:shadowDx="0"
- android:shadowDy="2"
- android:shadowColor="#ffcccccc"
- >
- <ListView
- android:id="@+id/lv_pw"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:listSelector="#00000000"
- android:divider="#fff5f5f5"
- android:dividerHeight="1dp"
- android:focusable="true"
- android:paddingLeft="5dip"
- android:paddingRight="5dip"
- android:scrollbars="none"
- android:fadeScrollbars="false"
- ></ListView>
- </LinearLayout>
|