22 lines
872 B
XML
22 lines
872 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".sample.MainActivity" >
|
|
|
|
<ListView
|
|
android:id="@+id/lv_demos"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:cacheColorHint="@android:color/transparent"
|
|
android:divider="@color/lightgray"
|
|
android:choiceMode="singleChoice"
|
|
android:dividerHeight="1.5dp"
|
|
android:focusable="true"
|
|
android:footerDividersEnabled="true"
|
|
android:headerDividersEnabled="true"
|
|
android:overScrollMode="never"
|
|
android:listSelector="@android:color/transparent"
|
|
android:scrollbars="vertical" />
|
|
|
|
</RelativeLayout> |