-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_3.xml
More file actions
47 lines (43 loc) · 1.56 KB
/
activity_3.xml
File metadata and controls
47 lines (43 loc) · 1.56 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
<?xml version="1.0" encoding="utf-8"?>
<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"
android:background="@drawable/background"
android:padding="20dp"
tools:context=".Activity3">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Recipient"
android:textColor="#fff"
android:textColorHint="#d4af37"
android:layout_marginTop="10dp"
android:textSize="22sp"
android:inputType="phone"
android:id="@+id/recip"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="300dp"
android:hint="Enter text"
android:textColor="#fff"
android:textColorHint="#d4af37"
android:gravity="top"
android:layout_marginTop="10dp"
android:textSize="22sp"
android:id="@+id/msg"
/>
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/snd_btn"
android:layout_width="match_parent"
android:layout_height="76dp"
android:layout_marginTop="150dp"
android:background="@drawable/snd_bt"
android:text="SEND"
android:textColor="@color/black"
android:textSize="25sp"
android:onClick="btn_send"/>
</LinearLayout>