summaryrefslogtreecommitdiff
path: root/android/sdremote/res/layout/activity_computer_creation.xml
blob: 50fde03dcdbfcdeac679ccb64f264bc5a0b5794a (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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

    <LinearLayout
        android:orientation="vertical"
        android:padding="@dimen/padding_creation_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <EditText
            android:id="@+id/edit_ip_address"
            android:singleLine="true"
            android:inputType="phone"
            android:hint="@string/hint_ip_address"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

        <EditText
            android:id="@+id/edit_name"
            android:singleLine="true"
            android:inputType="text|textCapSentences"
            android:hint="@string/hint_name"
            android:paddingTop="@dimen/padding_vertical_edit"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

    </LinearLayout>

</ScrollView>