-
Notifications
You must be signed in to change notification settings - Fork 0
/
fragment_main.xml
63 lines (56 loc) · 2.35 KB
/
fragment_main.xml
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
53
54
55
56
57
58
59
60
61
62
63
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.android.digitalhome.MainFragment">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">
<TextView
android:text="Main Switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#757575"
android:textColor="#ffffff"
android:id="@+id/textView"
android:textAppearance="@style/TextAppearance.AppCompat.Display1"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<ToggleButton
android:text="ToggleButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_marginTop="12dp"
android:id="@+id/mtoggleButton1" />
<Button
android:text="Light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="41dp"
android:id="@+id/blight"
android:layout_below="@+id/mtoggleButton1"
android:layout_alignStart="@+id/mtoggleButton1" />
<Button
android:text="Fan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/blight"
android:layout_alignEnd="@+id/blight"
android:layout_marginTop="42dp"
android:id="@+id/bfan" />
<Button
android:text="Logout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/bfan"
android:layout_alignEnd="@+id/bfan"
android:layout_marginTop="42dp"
android:id="@+id/blogout" />
</RelativeLayout>
</FrameLayout>