diff options
Diffstat (limited to 'packages/SystemUI/res/layout-xlarge/status_bar.xml')
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/status_bar.xml | 70 |
1 files changed, 21 insertions, 49 deletions
diff --git a/packages/SystemUI/res/layout-xlarge/status_bar.xml b/packages/SystemUI/res/layout-xlarge/status_bar.xml index e0b34cc..ba7029d 100644 --- a/packages/SystemUI/res/layout-xlarge/status_bar.xml +++ b/packages/SystemUI/res/layout-xlarge/status_bar.xml @@ -1,21 +1,18 @@ <?xml version="1.0" encoding="utf-8"?> <!-- -/* apps/common/assets/default/default/skins/StatusBar.xml -** -** Copyright 2006, 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. -*/ + * Copyright (C) 2010 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. --> <!-- android:background="@drawable/status_bar_closed_default_background" --> @@ -65,41 +62,16 @@ </com.android.systemui.statusbar.tablet.NotificationIconArea> - <LinearLayout android:id="@+id/ticker" - android:layout_width="300dip" + <FrameLayout + android:id="@+id/ticker" + android:layout_width="wrap_content" android:layout_height="match_parent" + android:layout_alignParentLeft="true" + android:layout_toLeftOf="@+id/systemInfo" android:paddingLeft="6dip" - android:animationCache="false" - android:layout_alignLeft="@id/notificationIcons" - android:layout_alignTop="@id/notificationIcons" - android:orientation="horizontal" - android:visibility="gone" - > - <ImageView android:id="@+id/tickerIcon" - android:layout_width="wrap_content" - android:layout_height="match_parent" - android:layout_marginRight="8dip" - /> - <com.android.systemui.statusbar.TickerView android:id="@+id/tickerText" - android:layout_width="0dip" - android:layout_weight="1" - android:layout_height="wrap_content" - android:paddingTop="2dip" - android:paddingRight="10dip"> - <TextView - android:textAppearance="@*android:style/TextAppearance.StatusBar.Ticker" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:singleLine="true" - /> - <TextView - android:textAppearance="@*android:style/TextAppearance.StatusBar.Ticker" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:singleLine="true" - /> - </com.android.systemui.statusbar.TickerView> - </LinearLayout> + android:gravity="center_vertical" + android:animateLayoutChanges="true" + /> <include layout="@layout/status_bar_center" android:layout_width="256dip" |