fb7435616ccb9bd35a65f1589884c88d612362e4
[goodguy/cinelerra.git] / CineRmt / src / main / 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="match_parent"
6     tools:context="com.local.cinermt.ConfigActivity"
7     android:background="#fdb308">
8
9     <LinearLayout
10         android:layout_width="match_parent"
11         android:layout_height="match_parent"
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             android:textColor="#000000" />
20
21         <EditText
22             android:id="@+id/ip_addr"
23             android:layout_width="match_parent"
24             android:layout_height="wrap_content" />
25
26         <TextView
27             android:id="@+id/pin_text"
28             android:layout_width="wrap_content"
29             android:layout_height="wrap_content"
30             android:text="PIN:"
31             android:textColor="#000000" />
32
33         <EditText
34             android:id="@+id/pin"
35             android:layout_width="match_parent"
36             android:layout_height="wrap_content" />
37
38         <TextView
39             android:id="@+id/dport"
40             android:layout_width="wrap_content"
41             android:layout_height="wrap_content"
42             android:text="Port:"
43             android:textColor="#000000" />
44
45         <EditText
46             android:id="@+id/port"
47             android:layout_width="match_parent"
48             android:layout_height="wrap_content" />
49
50         <Button
51             android:id="@+id/back"
52             android:layout_width="wrap_content"
53             android:layout_height="wrap_content"
54             android:text="Back" />
55     </LinearLayout>
56
57 </FrameLayout>