17 lines
686 B
XML
17 lines
686 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"
|
|
android:background="@drawable/bg"
|
|
tools:context=".MainActivity" >
|
|
|
|
<ListView
|
|
android:id="@+id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:divider="@color/list_divider"
|
|
android:dividerHeight="1dp"
|
|
android:listSelector="@drawable/list_row_selector" />
|
|
|
|
|
|
</RelativeLayout><!-- From: file:/D:/_PROJEKTE_/Android_NAS/sprueche-love/app/src/main/res/layout/activity_suchenbyid.xml --> |