-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror_pop_up.xml
34 lines (31 loc) · 1.18 KB
/
error_pop_up.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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp">
<TextView
android:id="@+id/title"
android:layout_marginStart="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginEnd="20dp"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:textColor="@android:color/black"
android:textSize="22sp"
android:textStyle="bold"
android:text="@string/error"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_marginStart="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginEnd="20dp"
android:text="@string/error_message"
android:textSize="18sp"
android:id="@+id/error_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>