12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- Copyright 2010-present Facebook.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- -->
- <resources>
- <declare-styleable name="com_facebook_picker_fragment">
- <attr name="show_pictures" format="boolean"/>
- <attr name="extra_fields" format="string"/>
- <attr name="show_title_bar" format="boolean" />
- <attr name="title_text" format="string" />
- <attr name="done_button_text" format="string" />
- <attr name="title_bar_background" format="reference" />
- <attr name="done_button_background" format="reference" />
- </declare-styleable>
- <declare-styleable name="com_facebook_friend_picker_fragment">
- <attr name="multi_select" format="boolean"/>
- </declare-styleable>
- <declare-styleable name="com_facebook_place_picker_fragment">
- <attr name="radius_in_meters" format="integer"/>
- <attr name="results_limit" format="integer"/>
- <attr name="search_text" format="string"/>
- <attr name="show_search_box" format="boolean" />
- </declare-styleable>
- <declare-styleable name="com_facebook_login_view">
- <attr name="confirm_logout" format="boolean"/>
- <attr name="fetch_user_info" format="boolean"/>
- <attr name="login_text" format="string"/>
- <attr name="logout_text" format="string"/>
- </declare-styleable>
- <declare-styleable name="com_facebook_profile_picture_view">
- <attr name="preset_size">
- <!-- Keep in sync with constants in ProfilePictureView -->
- <enum name="small" value="-2" />
- <enum name="normal" value="-3" />
- <enum name="large" value="-4" />
- </attr>
- <attr name="is_cropped" format="boolean" />
- </declare-styleable>
- </resources>
|