16 lines
678 B
XML
16 lines
678 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/sprueche-tv-star/app/src/main/res/layout/activity_autoren.xml --> |