-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSubActivity01.xml
48 lines (42 loc) · 1.6 KB
/
SubActivity01.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
<?xml version="1.0" encoding="utf-8"?>
<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"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingTop="5dp"
tools:context="com.example.image.pcs.SubActivity01">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="±fiΩƒ"
android:id="@+id/button"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="¿Ωº∫"
android:id="@+id/button2"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:onClick="onClick" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="º≥¡§"
android:id="@+id/button3"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true" />
<WebView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/webView"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@+id/button3"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
</RelativeLayout>