diff options
author | Joe Onorato <joeo@google.com> | 2010-09-17 18:38:38 -0400 |
---|---|---|
committer | Joe Onorato <joeo@google.com> | 2010-09-20 14:14:02 -0400 |
commit | ef1e7763c2dc5b9bac69cc747efe05c81d9fd9fc (patch) | |
tree | f528a7580bee46ead66e3d5153abb268a22075d6 /packages/SystemUI/res | |
parent | 4200dcaa7bd8b4efb6b88114dba8b93e6181c252 (diff) | |
download | frameworks_base-ef1e7763c2dc5b9bac69cc747efe05c81d9fd9fc.zip frameworks_base-ef1e7763c2dc5b9bac69cc747efe05c81d9fd9fc.tar.gz frameworks_base-ef1e7763c2dc5b9bac69cc747efe05c81d9fd9fc.tar.bz2 |
Tablet ticker.
Change-Id: Ia3db5cc29eac1703123de3e1c6dc7c22e7d024eb
Diffstat (limited to 'packages/SystemUI/res')
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/status_bar.xml | 70 | ||||
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/ticker.xml | 53 | ||||
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/ticker_compat.xml | 36 | ||||
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/ticker_icon.xml | 25 |
4 files changed, 135 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" diff --git a/packages/SystemUI/res/layout-xlarge/ticker.xml b/packages/SystemUI/res/layout-xlarge/ticker.xml new file mode 100644 index 0000000..c8d855f --- /dev/null +++ b/packages/SystemUI/res/layout-xlarge/ticker.xml @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * 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. +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="horizontal" + android:background="#ff000000" + > + + <LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:orientation="vertical" + android:paddingLeft="12dp" + > + + <TextView android:id="@+id/title" + xmlns:android="http://schemas.android.com/apk/res/android" + android:textAppearance="@*android:style/TextAppearance.StatusBar.Ticker" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textStyle="bold" + android:maxLines="1" + /> + <TextView android:id="@+id/subtitle" + xmlns:android="http://schemas.android.com/apk/res/android" + android:textAppearance="@*android:style/TextAppearance.StatusBar.Ticker" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:maxLines="1" + /> + </LinearLayout> + +</LinearLayout> diff --git a/packages/SystemUI/res/layout-xlarge/ticker_compat.xml b/packages/SystemUI/res/layout-xlarge/ticker_compat.xml new file mode 100644 index 0000000..79c7543 --- /dev/null +++ b/packages/SystemUI/res/layout-xlarge/ticker_compat.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * 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. +--> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="horizontal" + android:background="#ff000000" + > + + <TextView android:id="@+id/text" + android:textAppearance="@*android:style/TextAppearance.StatusBar.Ticker" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_gravity="center_vertical" + android:layout_marginLeft="12dp" + android:gravity="center_vertical" + android:maxLines="2" + /> + +</LinearLayout> diff --git a/packages/SystemUI/res/layout-xlarge/ticker_icon.xml b/packages/SystemUI/res/layout-xlarge/ticker_icon.xml new file mode 100644 index 0000000..9efa987 --- /dev/null +++ b/packages/SystemUI/res/layout-xlarge/ticker_icon.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + * 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. +--> + +<ImageView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="30dp" + android:layout_height="30dp" + android:layout_gravity="center" + android:layout_marginLeft="6dp" + /> + |