initial commit
[goodguy/history.git] / CineRmt / res / layout / activity_config.xml
1 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:tools="http://schemas.android.com/tools"
3     android:id="@+id/config_layout"
4     android:layout_width="match_parent"
5     android:layout_height="wrap_content"
6     tools:context="com.example.cinermt.ConfigActivity"
7     tools:ignore="MergeRootFrame" >
8
9     <LinearLayout
10         android:layout_width="match_parent"
11         android:layout_height="wrap_content"
12         android:orientation="vertical" >
13
14         <TextView
15             android:id="@+id/ip_addr_text"
16             android:layout_width="wrap_content"
17             android:layout_height="wrap_content"
18             android:text="IP Address:" />
19
20         <EditText
21             android:id="@+id/ip_addr"
22             android:layout_width="match_parent"
23             android:layout_height="wrap_content" />
24
25         <TextView
26             android:id="@+id/pin_text"
27             android:layout_width="wrap_content"
28             android:layout_height="wrap_content"
29             android:text="PIN:" />
30
31         <EditText
32             android:id="@+id/pin"
33             android:layout_width="match_parent"
34             android:layout_height="wrap_content" />
35
36         <TextView
37             android:id="@+id/dport"
38             android:layout_width="wrap_content"
39             android:layout_height="wrap_content"
40             android:text="Port:" />
41
42         <EditText
43             android:id="@+id/port"
44             android:layout_width="match_parent"
45             android:layout_height="wrap_content" />
46
47         <Button
48             android:id="@+id/back"
49             android:layout_width="wrap_content"
50             android:layout_height="wrap_content"
51             android:text="Back" />
52     </LinearLayout>
53
54 </FrameLayout>