-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity_main.xml
More file actions
57 lines (53 loc) · 2.24 KB
/
Copy pathactivity_main.xml
File metadata and controls
57 lines (53 loc) · 2.24 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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:background="#2A2A2A"
tools:context=".MainActivity">
<EditText
android:id="@+id/ip_address"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="104dp"
android:layout_marginTop="56dp"
android:autofillHints=""
android:ems="10"
android:inputType="textPersonName"
android:labelFor="@id/ip_address"
android:text="@string/_192_168_79_182"
android:textColor="@color/white"
android:textSize="24sp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/ip_address_id" />
<TextView
android:id="@+id/ip_address_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="160dp"
android:layout_marginTop="232dp"
android:fontFamily="sans-serif-condensed"
android:shadowColor="@color/white"
android:text="@string/enter_esp8266_ip"
android:textColor="#FFFFFF"
android:textSize="24sp"
app:cornerRadius="24dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="TextContrastCheck" />
<com.google.android.material.button.MaterialButton
android:id="@+id/ip_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="192dp"
android:layout_marginTop="76dp"
android:background="#565656"
android:soundEffectsEnabled="true"
android:text="@string/next"
android:textColor="@color/white"
app:cornerRadius="10dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/ip_address"
tools:ignore="TextContrastCheck" />
</androidx.constraintlayout.widget.ConstraintLayout>