2016-10-01 01:18:42 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2016-10-05 02:30:10 +02:00
|
|
|
android:orientation="vertical"
|
2016-10-01 01:18:42 +02:00
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
2016-10-05 02:30:10 +02:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2016-10-01 01:18:42 +02:00
|
|
|
|
2016-10-05 02:30:10 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/podselection__button_use_custom_pod"
|
2016-10-01 01:18:42 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2016-10-05 02:30:10 +02:00
|
|
|
android:text="@string/podselection__custom_pod"
|
|
|
|
tools:text="Benutzerdefinierter Pod" />
|
2016-10-01 01:18:42 +02:00
|
|
|
|
|
|
|
|
2016-10-05 02:30:10 +02:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/podselection__listpods"
|
2016-10-01 01:18:42 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
2016-10-05 02:30:10 +02:00
|
|
|
android:layout_below="@+id/podselection__button_use_custom_pod"
|
|
|
|
android:choiceMode="singleChoice" />
|
|
|
|
|
2016-10-01 01:18:42 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|