| 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 |
<resources>
|
|
|
19 |
<declare-styleable name="com_facebook_picker_fragment">
|
|
|
20 |
<attr name="show_pictures" format="boolean"/>
|
|
|
21 |
<attr name="extra_fields" format="string"/>
|
|
|
22 |
<attr name="show_title_bar" format="boolean" />
|
|
|
23 |
<attr name="title_text" format="string" />
|
|
|
24 |
<attr name="done_button_text" format="string" />
|
|
|
25 |
<attr name="title_bar_background" format="reference" />
|
|
|
26 |
<attr name="done_button_background" format="reference" />
|
|
|
27 |
</declare-styleable>
|
|
|
28 |
<declare-styleable name="com_facebook_friend_picker_fragment">
|
|
|
29 |
<attr name="multi_select" format="boolean"/>
|
|
|
30 |
</declare-styleable>
|
|
|
31 |
<declare-styleable name="com_facebook_place_picker_fragment">
|
|
|
32 |
<attr name="radius_in_meters" format="integer"/>
|
|
|
33 |
<attr name="results_limit" format="integer"/>
|
|
|
34 |
<attr name="search_text" format="string"/>
|
|
|
35 |
<attr name="show_search_box" format="boolean" />
|
|
|
36 |
</declare-styleable>
|
|
|
37 |
<declare-styleable name="com_facebook_login_view">
|
|
|
38 |
<attr name="confirm_logout" format="boolean"/>
|
|
|
39 |
<attr name="fetch_user_info" format="boolean"/>
|
|
|
40 |
<attr name="login_text" format="string"/>
|
|
|
41 |
<attr name="logout_text" format="string"/>
|
|
|
42 |
</declare-styleable>
|
|
|
43 |
<declare-styleable name="com_facebook_profile_picture_view">
|
|
|
44 |
<attr name="preset_size">
|
|
|
45 |
<!-- Keep in sync with constants in ProfilePictureView -->
|
|
|
46 |
<enum name="small" value="-2" />
|
|
|
47 |
<enum name="normal" value="-3" />
|
|
|
48 |
<enum name="large" value="-4" />
|
|
|
49 |
</attr>
|
|
|
50 |
<attr name="is_cropped" format="boolean" />
|
|
|
51 |
</declare-styleable>
|
|
|
52 |
<declare-styleable name="com_facebook_like_view">
|
|
|
53 |
<attr name="foreground_color" format="color" />
|
|
|
54 |
<attr name="object_id" format="string" />
|
|
|
55 |
<attr name="style">
|
|
|
56 |
<!-- Keep in sync with Enums in LikeView -->
|
|
|
57 |
<enum name="standard" value="0" />
|
|
|
58 |
<enum name="button" value="1" />
|
|
|
59 |
<enum name="box_count" value="2" />
|
|
|
60 |
</attr>
|
|
|
61 |
<attr name="auxiliary_view_position">
|
|
|
62 |
<!-- Keep in sync with Enums in LikeView -->
|
|
|
63 |
<enum name="bottom" value="0" />
|
|
|
64 |
<enum name="inline" value="1" />
|
|
|
65 |
<enum name="top" value="2" />
|
|
|
66 |
</attr>
|
|
|
67 |
<attr name="horizontal_alignment">
|
|
|
68 |
<!-- Keep in sync with Enums in LikeView -->
|
|
|
69 |
<enum name="center" value="0" />
|
|
|
70 |
<enum name="left" value="1" />
|
|
|
71 |
<enum name="right" value="2" />
|
|
|
72 |
</attr>
|
|
|
73 |
</declare-styleable>
|
|
|
74 |
</resources>
|