summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/a_add_provider.xml
blob: 14bf84820cf38e25bb8dbb52e1e1f03f7646340d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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"
    tools:context=".AddProviderActivity"
    android:padding="@dimen/stdpadding"
    style="@style/BitmaskActivity">

    <!--Contains header information!??? -->
    <include layout="@layout/v_add_provider" />

    <LinearLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <!-- the header contains the mask-->
        <include layout="@layout/v_provider_header" />

        <EditText
            android:id="@+id/textUri"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:hint="@string/new_provider_uri"
            android:inputType="text"
            android:padding="@dimen/stdpadding"/>
        <!--      android:imeOptions="actionSend" => was passieren soll, wenn ok geklickt wird -->


        <Button
            android:id="@+id/button_save"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="@string/save" />

        <Button
            android:id="@+id/button_cancel"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:text="@string/cancel" />

    </LinearLayout>

</RelativeLayout>