forked from hussien89aa/AndroidTutorialForBeginners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_note.xml
More file actions
111 lines (95 loc) · 4.53 KB
/
Copy pathactivity_note.xml
File metadata and controls
111 lines (95 loc) · 4.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<RelativeLayout 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="phonelocation.example.asuss550c.phonelocation.Note"
>
<LinearLayout
android:divider="@color/whitebackground"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/scrollView2" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/LLogin"
android:layout_marginTop="15dp"
android:layout_marginLeft="9dp"
android:layout_marginRight="5dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:touchscreenBlocksFocus="false"
android:layout_marginBottom="10dp"
android:id="@+id/LBTimeDElay">
<ImageView
android:layout_width="50pt"
android:layout_height="50pt"
android:src="@drawable/cover"
android:id="@+id/imageView2" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/AppWork"
android:id="@+id/textView1"
android:textColor="@color/white"
android:layout_marginBottom="0dp"
android:layout_marginLeft="0dp"
android:layout_marginTop="30dp"
android:textSize="20dp"
android:textIsSelectable="true"
android:textStyle="bold" />
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:touchscreenBlocksFocus="false"
android:layout_marginBottom="3dp"
android:layout_weight="0">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/AppDescription"
android:id="@+id/txtuserID"
android:layout_weight="2"
android:textColor="@color/white"
android:paddingBottom="8dp"
android:textSize="18dp"
android:textAlignment="center"
android:textStyle="bold"
android:paddingTop="8dp"
android:paddingLeft="8dp" />
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight="0"
android:layout_marginTop="10dp"
android:padding="6dp">
<Button
android:background="@drawable/green_button"
android:layout_width="match_parent"
android:layout_height="30pt"
android:text="@string/SelectList"
android:id="@+id/BuSaveSetting"
android:onClick="BuDismiss"
android:textColor="#ff06071c"
android:layout_weight="0"
android:drawableLeft="@drawable/ic_add_white_24dp"
android:layout_marginBottom="5dp" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
</RelativeLayout>