| 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 xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
19 |
android:id="@+id/com_facebook_picker_top_bar"
|
|
|
20 |
android:layout_width="match_parent"
|
|
|
21 |
android:layout_height="48dp"
|
|
|
22 |
android:background="@drawable/com_facebook_top_background"
|
|
|
23 |
android:gravity="right">
|
|
|
24 |
<Button
|
|
|
25 |
android:id="@+id/com_facebook_picker_done_button"
|
|
|
26 |
android:layout_width="wrap_content"
|
|
|
27 |
android:minWidth="55dp"
|
|
|
28 |
android:layout_height="48dp"
|
|
|
29 |
android:background="@drawable/com_facebook_top_button"
|
|
|
30 |
android:paddingLeft="5dip"
|
|
|
31 |
android:paddingRight="5dip"
|
|
|
32 |
android:textColor="#ffffff"
|
|
|
33 |
android:textSize="14sp"
|
|
|
34 |
android:shadowColor="#66000000"
|
|
|
35 |
android:shadowDx="1"
|
|
|
36 |
android:shadowDy="1"
|
|
|
37 |
android:shadowRadius="1"
|
|
|
38 |
android:layout_alignParentRight="true"
|
|
|
39 |
/>
|
|
|
40 |
<LinearLayout
|
|
|
41 |
android:id="@+id/com_facebook_picker_divider"
|
|
|
42 |
android:layout_width="1dp"
|
|
|
43 |
android:layout_height="match_parent"
|
|
|
44 |
android:background="#40000000"
|
|
|
45 |
android:layout_alignLeft="@id/com_facebook_picker_done_button"/>
|
|
|
46 |
<TextView
|
|
|
47 |
android:id="@+id/com_facebook_picker_title"
|
|
|
48 |
android:layout_width="match_parent"
|
|
|
49 |
android:layout_height="match_parent"
|
|
|
50 |
android:textSize="22sp"
|
|
|
51 |
android:textColor="#FFFFFF"
|
|
|
52 |
android:gravity="left|center_vertical"
|
|
|
53 |
android:ellipsize="end"
|
|
|
54 |
android:singleLine="true"
|
|
|
55 |
android:scaleType="center"
|
|
|
56 |
android:shadowColor="#66000000"
|
|
|
57 |
android:shadowDx="1"
|
|
|
58 |
android:shadowDy="1"
|
|
|
59 |
android:shadowRadius="1"
|
|
|
60 |
android:layout_marginLeft="10dip"
|
|
|
61 |
android:layout_marginRight="10dip"
|
|
|
62 |
android:layout_toLeftOf="@id/com_facebook_picker_divider"/>
|
|
|
63 |
</RelativeLayout>
|