-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.xml
More file actions
52 lines (51 loc) · 1.55 KB
/
Copy pathmain.xml
File metadata and controls
52 lines (51 loc) · 1.55 KB
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
48
49
50
51
52
<LinearLayout
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"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linear1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp"
android:background="#000000"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linear2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:background="#000000"
android:orientation="horizontal" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="1dp"
android:padding="8dp"
android:background="#2196F3"
android:text="Run"
android:textSize="18sp"
android:textStyle="bold"
android:textColor="#000000" />
<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="TextView"
android:textSize="12sp"
android:textColor="#000000" />
<EditText
android:id="@+id/edittext1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:textSize="12sp"
android:textColor="#FFFFFF"
android:hint="<!-- Start Here -->"
android:textColorHint="#607D8B" />
</LinearLayout>
</LinearLayout>