blob: 0db0734b4ce4cc95788332c6f68194141da8c754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="8dp"
android:paddingRight="8dp">
<ListView
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_alignParentTop="true"
android:drawSelectorOnTop="false" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="addAndSelectNewProvider"
android:text="@string/new_provider_button" />
</LinearLayout>
|