equal
deleted
inserted
replaced
|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 android:layout_width="match_parent" |
|
4 android:layout_height="match_parent" |
|
5 > |
|
6 |
|
7 <TextView |
|
8 android:id="@+id/text" |
|
9 android:layout_width="wrap_content" |
|
10 android:layout_height="wrap_content" |
|
11 android:background="@android:color/transparent" |
|
12 android:typeface="sans" |
|
13 android:textStyle="normal" |
|
14 android:gravity="center" |
|
15 android:text="button" |
|
16 /> |
|
17 |
|
18 <FrameLayout |
|
19 android:id="@+id/encircle" |
|
20 android:layout_width="match_parent" |
|
21 android:layout_height="match_parent" |
|
22 android:background="@android:color/transparent" |
|
23 android:layout_alignTop="@+id/text" |
|
24 android:layout_alignLeft="@+id/text" |
|
25 android:layout_alignBottom="@+id/text" |
|
26 android:layout_alignRight="@+id/text" |
|
27 /> |
|
28 |
|
29 </RelativeLayout> |