| 14792 |
manas |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<!--
|
|
|
3 |
Copyright 2010-present Facebook.
|
|
|
4 |
|
|
|
5 |
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
6 |
you may not use this file except in compliance with the License.
|
|
|
7 |
You may obtain a copy of the License at
|
|
|
8 |
|
|
|
9 |
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
10 |
|
|
|
11 |
Unless required by applicable law or agreed to in writing, software
|
|
|
12 |
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
13 |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
14 |
See the License for the specific language governing permissions and
|
|
|
15 |
limitations under the License.
|
|
|
16 |
-->
|
|
|
17 |
|
|
|
18 |
<RelativeLayout
|
|
|
19 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
20 |
android:layout_height="wrap_content"
|
|
|
21 |
android:layout_width="match_parent"
|
|
|
22 |
android:focusable="false">
|
|
|
23 |
<LinearLayout
|
|
|
24 |
android:layout_width="match_parent"
|
|
|
25 |
android:layout_height="wrap_content"
|
|
|
26 |
android:orientation="horizontal"
|
|
|
27 |
android:focusable="false"
|
|
|
28 |
>
|
|
|
29 |
<FrameLayout
|
|
|
30 |
android:layout_width="80dp"
|
|
|
31 |
android:layout_height="wrap_content"
|
|
|
32 |
>
|
|
|
33 |
<ViewStub
|
|
|
34 |
android:id="@+id/com_facebook_picker_profile_pic_stub"
|
|
|
35 |
android:inflatedId="@+id/com_facebook_picker_image"
|
|
|
36 |
android:layout="@layout/com_facebook_picker_image"
|
|
|
37 |
android:layout_gravity="left|center_vertical"
|
|
|
38 |
android:layout_width="@dimen/com_facebook_picker_place_image_size"
|
|
|
39 |
android:layout_height="@dimen/com_facebook_picker_place_image_size" />
|
|
|
40 |
</FrameLayout>
|
|
|
41 |
<LinearLayout
|
|
|
42 |
android:orientation="vertical"
|
|
|
43 |
android:focusable="false"
|
|
|
44 |
android:layout_width="0dip"
|
|
|
45 |
android:layout_height="wrap_content"
|
|
|
46 |
android:layout_marginRight="16dp"
|
|
|
47 |
android:layout_gravity="center_vertical"
|
|
|
48 |
android:layout_weight="1">
|
|
|
49 |
<TextView
|
|
|
50 |
android:id="@+id/com_facebook_picker_title"
|
|
|
51 |
android:layout_width="fill_parent"
|
|
|
52 |
android:layout_height="wrap_content"
|
|
|
53 |
android:layout_weight="1.0"
|
|
|
54 |
android:ellipsize="end"
|
|
|
55 |
android:singleLine="true"
|
|
|
56 |
android:typeface="sans"
|
|
|
57 |
android:textColor="#000000"
|
|
|
58 |
android:lines="1"
|
|
|
59 |
android:textSize="16sp"
|
|
|
60 |
android:gravity="left|center_vertical"/>
|
|
|
61 |
<TextView
|
|
|
62 |
android:id="@+id/picker_subtitle"
|
|
|
63 |
android:layout_width="fill_parent"
|
|
|
64 |
android:layout_height="wrap_content"
|
|
|
65 |
android:layout_weight="1.0"
|
|
|
66 |
android:ellipsize="end"
|
|
|
67 |
android:singleLine="true"
|
|
|
68 |
android:textColor="#666666"
|
|
|
69 |
android:lines="1"
|
|
|
70 |
android:typeface="sans"
|
|
|
71 |
android:textSize="12sp"
|
|
|
72 |
android:gravity="left|center_vertical"/>
|
|
|
73 |
</LinearLayout>
|
|
|
74 |
<!--ViewStub
|
|
|
75 |
android:id="@+id/checkbox_stub"
|
|
|
76 |
android:inflatedId="@+id/picker_checkbox"
|
|
|
77 |
android:layout="@layout/checkbox_layout"
|
|
|
78 |
android:layout_width="23dip"
|
|
|
79 |
android:layout_height="23dip"
|
|
|
80 |
android:layout_marginRight="10dip"/-->
|
|
|
81 |
</LinearLayout>
|
|
|
82 |
<View
|
|
|
83 |
android:layout_width="0dp"
|
|
|
84 |
android:layout_height="@dimen/com_facebook_picker_divider_width"
|
|
|
85 |
android:layout_alignParentLeft="true"
|
|
|
86 |
android:layout_alignParentRight="true"
|
|
|
87 |
android:layout_alignParentBottom="true"
|
|
|
88 |
android:background="@drawable/com_facebook_picker_default_separator_color"
|
|
|
89 |
/>
|
|
|
90 |
</RelativeLayout>
|