diff options
author | Adam Powell <adamp@google.com> | 2013-01-23 23:42:31 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-01-23 23:42:36 +0000 |
commit | c246950043c4c48beb51d5b56d94473e77c5fad2 (patch) | |
tree | 3837053fe8669828344f2eac52eac49c2d4d1936 /core/res | |
parent | 5a32ec323784ad7926bb9dc3b3678c9b60d3a4ba (diff) | |
parent | 27cba3895282ac1da1f1d43d37d53f8113527569 (diff) | |
download | frameworks_base-c246950043c4c48beb51d5b56d94473e77c5fad2.zip frameworks_base-c246950043c4c48beb51d5b56d94473e77c5fad2.tar.gz frameworks_base-c246950043c4c48beb51d5b56d94473e77c5fad2.tar.bz2 |
Merge "Touch action bar title text: you will go to space today!" into jb-mr1.1-dev
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/res/layout/action_bar_home.xml | 4 | ||||
-rw-r--r-- | core/res/res/layout/action_bar_title_item.xml | 3 | ||||
-rw-r--r-- | core/res/res/layout/action_bar_up_container.xml | 23 | ||||
-rw-r--r-- | core/res/res/values/symbols.xml | 1 |
4 files changed, 26 insertions, 5 deletions
diff --git a/core/res/res/layout/action_bar_home.xml b/core/res/res/layout/action_bar_home.xml index fe58215..5341f3d 100644 --- a/core/res/res/layout/action_bar_home.xml +++ b/core/res/res/layout/action_bar_home.xml @@ -17,9 +17,7 @@ <view xmlns:android="http://schemas.android.com/apk/res/android" class="com.android.internal.widget.ActionBarView$HomeView" android:layout_width="wrap_content" - android:layout_height="match_parent" - android:background="?android:attr/actionBarItemBackground" - android:animateLayoutChanges="true"> + android:layout_height="match_parent"> <ImageView android:id="@android:id/up" android:src="?android:attr/homeAsUpIndicator" android:layout_gravity="center_vertical|start" diff --git a/core/res/res/layout/action_bar_title_item.xml b/core/res/res/layout/action_bar_title_item.xml index df773eb..ccc5b07 100644 --- a/core/res/res/layout/action_bar_title_item.xml +++ b/core/res/res/layout/action_bar_title_item.xml @@ -16,10 +16,9 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:orientation="horizontal" android:paddingEnd="8dip" - android:background="?android:attr/actionBarItemBackground" android:enabled="false"> <ImageView android:id="@android:id/up" diff --git a/core/res/res/layout/action_bar_up_container.xml b/core/res/res/layout/action_bar_up_container.xml new file mode 100644 index 0000000..c6fad64 --- /dev/null +++ b/core/res/res/layout/action_bar_up_container.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2013 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="wrap_content" + android:layout_height="match_parent" + android:background="?android:attr/actionBarItemBackground" + android:gravity="center_vertical" + android:enabled="false"> +</LinearLayout> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 0f9d57e..391320b 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -1112,6 +1112,7 @@ <java-symbol type="layout" name="keyguard_multi_user_selector_widget" /> <java-symbol type="layout" name="sms_short_code_confirmation_dialog" /> <java-symbol type="layout" name="keyguard_add_widget" /> + <java-symbol type="layout" name="action_bar_up_container" /> <java-symbol type="anim" name="slide_in_child_bottom" /> <java-symbol type="anim" name="slide_in_right" /> |