actionbar_pulldown_menu_top_button.xml revision 96c8509c1b2e6a5b56cc4e30756d16b1d2297c43
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18    android:orientation="vertical"
19    android:layout_width="wrap_content"
20    android:layout_height="48dip"
21    android:gravity="center_vertical"
22    android:paddingLeft="4dip">
23
24    <TextView android:id="@+id/top_button_weekday"
25        android:layout_width="wrap_content"
26        android:layout_height="wrap_content"
27        android:singleLine="true"
28        android:textSize="12sp"
29        android:layout_marginTop="-2dip"
30        android:layout_marginBottom="-8dip"
31        android:textColor="@color/calendar_view_switch_menu_text_color"
32        android:gravity="left" />
33
34    <TextView android:id="@+id/top_button_date"
35        android:layout_width="wrap_content"
36        android:layout_height="wrap_content"
37        android:singleLine="true"
38        android:textSize="@dimen/action_bar_date_text_size"
39        android:textColor="@color/calendar_view_switch_menu_text_color"
40        android:gravity="left" />
41</LinearLayout>
42
43