b052885ea3
Bug: 2419716
70 lines
2.7 KiB
XML
70 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2009 The Android Open Source Project
|
|
|
|
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.
|
|
-->
|
|
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/screen"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:background="@android:drawable/title_bar">
|
|
|
|
<TextView android:id="@+id/title_left_text"
|
|
android:gravity="center_vertical|left"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
style="?android:attr/windowTitleStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<TextView android:id="@+id/title_right_text"
|
|
android:gravity="center_vertical|right"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:textColor="#ffffffff"
|
|
android:shadowRadius="0.1"
|
|
android:shadowDy="1"
|
|
android:shadowColor="#ff000000"
|
|
android:layout_weight="1" />
|
|
|
|
<Button android:id="@+id/account_title_button"
|
|
android:gravity="center_vertical|right"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="26dip"
|
|
android:textColor="#ffffffff"
|
|
android:layout_margin="3dip"
|
|
android:paddingTop="0dip"
|
|
android:paddingBottom="0dip"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"
|
|
android:background="@drawable/one_pixel_border_button" />
|
|
|
|
<ProgressBar android:id="@+id/title_progress_icon"
|
|
style="?android:attr/progressBarStyleSmallTitle"
|
|
android:visibility="gone"
|
|
android:minWidth="10dip"
|
|
android:paddingRight="1dip"
|
|
android:layout_marginLeft="4dip"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|