| 14792 |
manas |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
android:layout_width="wrap_content"
|
|
|
5 |
android:layout_height="wrap_content"
|
|
|
6 |
android:paddingLeft="20dp"
|
|
|
7 |
android:paddingRight="20dp">
|
|
|
8 |
<RelativeLayout
|
|
|
9 |
android:id="@+id/com_facebook_body_frame"
|
|
|
10 |
android:layout_width="wrap_content"
|
|
|
11 |
android:layout_height="wrap_content"
|
|
|
12 |
android:layout_below="@+id/com_facebook_tooltip_bubble_view_top_pointer"
|
|
|
13 |
android:layout_centerHorizontal="true"
|
|
|
14 |
android:background="@drawable/com_facebook_tooltip_blue_background">
|
|
|
15 |
<ImageView
|
|
|
16 |
android:id="@+id/com_facebook_button_xout"
|
|
|
17 |
android:layout_width="wrap_content"
|
|
|
18 |
android:layout_height="wrap_content"
|
|
|
19 |
android:layout_alignParentTop="true"
|
|
|
20 |
android:layout_alignParentRight="true"
|
|
|
21 |
android:padding="10dp"
|
|
|
22 |
android:src="@drawable/com_facebook_tooltip_blue_xout"
|
|
|
23 |
/>
|
|
|
24 |
<TextView
|
|
|
25 |
android:id="@+id/com_facebook_tooltip_bubble_view_text_body"
|
|
|
26 |
android:layout_width="wrap_content"
|
|
|
27 |
android:layout_height="wrap_content"
|
|
|
28 |
android:layout_alignParentTop="true"
|
|
|
29 |
android:layout_toLeftOf="@id/com_facebook_button_xout"
|
|
|
30 |
android:layout_alignParentLeft="true"
|
|
|
31 |
android:padding="10dp"
|
|
|
32 |
style="@style/tooltip_bubble_text"
|
|
|
33 |
/>
|
|
|
34 |
</RelativeLayout>
|
|
|
35 |
<ImageView
|
|
|
36 |
android:id="@+id/com_facebook_tooltip_bubble_view_top_pointer"
|
|
|
37 |
android:layout_width="wrap_content"
|
|
|
38 |
android:layout_height="wrap_content"
|
|
|
39 |
android:layout_alignParentTop="true"
|
|
|
40 |
android:layout_centerHorizontal="true"
|
|
|
41 |
android:layout_marginBottom="-10dp"
|
|
|
42 |
android:src="@drawable/com_facebook_tooltip_blue_topnub"
|
|
|
43 |
/>
|
|
|
44 |
<ImageView
|
|
|
45 |
android:id="@+id/com_facebook_tooltip_bubble_view_bottom_pointer"
|
|
|
46 |
android:layout_width="wrap_content"
|
|
|
47 |
android:layout_height="wrap_content"
|
|
|
48 |
android:layout_gravity="center_horizontal|bottom"
|
|
|
49 |
android:layout_centerHorizontal="true"
|
|
|
50 |
android:layout_below="@id/com_facebook_body_frame"
|
|
|
51 |
android:layout_marginTop="-13dp"
|
|
|
52 |
android:src="@drawable/com_facebook_tooltip_blue_bottomnub"
|
|
|
53 |
/>
|
|
|
54 |
</RelativeLayout>
|