1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2007 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 <resources> 18 <drawable name="grayBg">#FF333333</drawable> 19 20 <style name="IccPanel"> 21 <item name="android:windowFrame">@null</item> 22 <item name="android:windowBackground">@drawable/grayBg</item> 23 </style> 24 25 <style name="info_label"> 26 <item name="android:layout_height">wrap_content</item> 27 <item name="android:layout_width">wrap_content</item> 28 <item name="android:textAppearance">@style/TextAppearance.info_label</item> 29 <item name="android:paddingEnd">4dip</item> 30 </style> 31 32 <style name="info_layout"> 33 <item name="android:orientation">vertical</item> 34 <item name="android:paddingStart">10dip</item> 35 <item name="android:paddingTop">10dip</item> 36 <item name="android:paddingEnd">10dip</item> 37 <item name="android:paddingBottom">10dip</item> 38 <item name="android:layout_width">match_parent</item> 39 <item name="android:layout_height">match_parent</item> 40 </style> 41 42 <style name="entry_layout"> 43 <item name="android:orientation">vertical</item> 44 <item name="android:layout_width">wrap_content</item> 45 <item name="android:layout_height">wrap_content</item> 46 </style> 47 48 <style name="TextAppearance" parent="android:TextAppearance"> 49 </style> 50 51 <style name="TextAppearance.info_label"> 52 <item name="android:textSize">14sp</item> 53 <item name="android:textStyle">bold</item> 54 </style> 55 56 <!-- Preference Style for the phone number preferences --> 57 <style name="EditPhoneNumberPreference"> 58 <item name="enableButtonText">@string/enable</item> 59 <item name="disableButtonText">@string/disable</item> 60 <item name="changeNumButtonText">@string/change_num</item> 61 <item name="confirmMode">activation</item> 62 </style> 63 64 <!-- OTA Call Card styles --> 65 <style name="ccOtaButtonBar"> 66 <!-- TODO: change height to 'wrap_content' when layout bug is fixed --> 67 <item name="android:layout_height">60dip</item> 68 <item name="android:layout_width">match_parent</item> 69 <item name="android:background">@android:drawable/bottom_bar</item> 70 </style> 71 72 <style name="ccOtaButton"> 73 <item name="android:layout_width">150dip</item> 74 <item name="android:layout_height">wrap_content</item> 75 <item name="android:layout_marginTop">5dip</item> 76 <item name="android:layout_marginBottom">5dip</item> 77 </style> 78 79 <style name="ccOtaNextButton" parent="ccOtaButton"> 80 <!-- <item name="android:drawableEnd">@drawable/ic_btn_next</item> 81 <item name="android:drawablePadding">10dip</item> 82 --> 83 <item name="android:layout_alignParentBottom">true</item> 84 <item name="android:layout_alignParentEnd">true</item> 85 <item name="android:layout_marginEnd">4dip</item> 86 </style> 87 88 <style name="ccOtaSkipButton" parent="ccOtaButton"> 89 <item name="android:layout_alignParentBottom">true</item> 90 <item name="android:layout_alignParentStart">true</item> 91 <item name="android:layout_marginStart">4dip</item> 92 </style> 93 94 <style name="ccOtaWizardTitle"> 95 <item name="android:textSize">22sp</item> 96 <item name="android:textColor">@color/ota_title_color</item> 97 </style> 98 99 <style name="ccOtaTextPrimary"> 100 <item name="android:textColor">?android:attr/textColorPrimary</item> 101 <item name="android:textSize">17sp</item> 102 </style> 103 104 <!-- Buttons in the main "button row" of the in-call onscreen touch UI. --> 105 <style name="InCallButton"> 106 <item name="android:layout_width">0px</item> 107 <item name="android:layout_height">@dimen/in_call_button_height</item> 108 <item name="android:layout_weight">1</item> 109 <item name="android:background">?android:attr/selectableItemBackground</item> 110 </style> 111 112 <!-- "Compound button" variation of InCallButton. 113 These buttons have the concept of two states: checked and unchecked. 114 (This style is just like "InCallButton" except that we also 115 clear out android:textOn and android:textOff, to avoid the default 116 text label behavior of the ToggleButton class.) --> 117 <style name="InCallCompoundButton" parent="InCallButton"> 118 <item name="android:textOn">@null</item> 119 <item name="android:textOff">@null</item> 120 </style> 121 122 <style name="VerticalSeparator"> 123 <item name="android:layout_width">2dp</item> 124 <item name="android:layout_height">match_parent</item> 125 <item name="android:background">@android:color/black</item> 126 </style> 127 128 <!-- "End" button; similar to InCallButton. --> 129 <style name="InCallEndButton"> 130 <item name="android:layout_width">0dip</item> 131 <item name="android:layout_height">@dimen/in_call_end_button_height</item> 132 <item name="android:layout_weight">1</item> 133 </style> 134 135 <!-- Buttons in extra button row. --> 136 <style name="InCallExtraRowButton"> 137 <item name="android:layout_width">@dimen/extra_row_button_width</item> 138 <item name="android:layout_height">@dimen/extra_row_button_height</item> 139 <item name="android:background">@null</item> 140 </style> 141 142 <!-- Text label drawn alongside buttons in the "extra button row" of 143 the in-call onscreen touch UI. --> 144 <style name="InCallExtraRowButtonLabel"> 145 <item name="android:textAppearance">?android:attr/textAppearanceSmall</item> 146 <item name="android:textColor">@color/incall_call_banner_text_color</item> 147 <item name="android:textAllCaps">true</item> 148 <item name="android:textStyle">bold</item> 149 <item name="android:layout_width">wrap_content</item> 150 <item name="android:layout_height">wrap_content</item> 151 <item name="android:layout_gravity">center_vertical</item> 152 <item name="android:layout_marginStart">5dip</item> 153 <item name="android:layout_marginEnd">5dip</item> 154 </style> 155 156 <!-- Theme for the activity com.android.phone.Settings, which is the 157 "Mobile network settings" screen (used on non-voice-capable 158 tablets as well as regular phone devices.) --> 159 <style name="Theme.Settings" parent="@android:style/Theme.Holo.DialogWhenLarge"> 160 <item name="android:windowCloseOnTouchOutside">true</item> 161 </style> 162 163 <style name="InCallAnimationStyle" parent="@*android:style/Animation.Holo.Activity"> 164 <!-- Suppress task-to-task animation happening during the transition from 165 OutgoingCallBroadcaster (and SipOptionHandler) to InCallScreen. 166 The transition unexpectedly happens during the transition (inside the phone task), 167 because InCallScreen is using android:launchMode="singleInstance". 168 169 - taskOpenEnterAnimation/taskOpenExitAnimation is used for the first time 170 InCallScreen instance is created. 171 172 - taskToFrontEnterAnimation/taskToFrontExitAnimation is used when InCallScreen 173 is already available. 174 (Note that InCallScreen won't be destroyed once it is created) 175 176 TODO: try removing the flag instead --> 177 <item name="*android:taskOpenEnterAnimation">@*android:anim/activity_open_enter</item> 178 <item name="*android:taskOpenExitAnimation">@*android:anim/activity_open_exit</item> 179 <item name="*android:taskToFrontEnterAnimation">@*android:anim/activity_open_enter</item> 180 <item name="*android:taskToFrontExitAnimation">@*android:anim/activity_open_exit</item> 181 </style> 182 183 <style name="OutgoingAnimationStyle" parent="@*android:style/Animation.Holo.Activity"> 184 <!-- Suppress task-to-task transition animation happening from 185 DialtactsActivity to OutgoingCallBroadcaster. --> 186 <item name="*android:taskOpenEnterAnimation">@*android:anim/activity_open_enter</item> 187 <item name="*android:taskOpenExitAnimation">@*android:anim/activity_open_exit</item> 188 </style> 189 190 <!-- Theme for the InCallScreen activity. This gives us a totally black 191 window background instead of the default dark grey. (We don't just use 192 Theme.Black.NoTitleBar directly, since we want any popups or dialogs 193 from the InCallScreen to have the correct holo style. --> 194 <style name="Theme.InCallScreen" parent="@android:style/Theme.Holo.NoActionBar"> 195 <item name="android:windowBackground">@android:color/black</item> 196 197 <item name="*android:windowAnimationStyle">@style/InCallAnimationStyle</item> 198 </style> 199 200 <style name="DialpadButtonStyle"> 201 <item name="android:layout_width">0dip</item> 202 <item name="android:layout_height">match_parent</item> 203 <item name="android:layout_weight">1</item> 204 <item name="android:background">?android:attr/selectableItemBackground</item> 205 <item name="android:soundEffectsEnabled">false</item> 206 </style> 207 208 <style name="ContactsActionBarStyle" 209 parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse"> 210 <item name="android:background">@color/people_app_theme_color</item> 211 <item name="android:backgroundStacked">@color/people_app_theme_color</item> 212 </style> 213 214 <style name="SimImportTheme" 215 parent="@android:style/Theme.Holo.Light.DarkActionBar"> 216 <item name="android:actionBarStyle">@style/ContactsActionBarStyle</item> 217 </style> 218 219 <style name="EmergencyDialerTheme" parent="@android:style/Theme.Holo"> 220 <item name="android:windowBackground">@android:color/black</item> 221 </style> 222 223 <style name="OutgoingCallBroadcasterTheme" parent="@android:style/Theme.Holo.NoActionBar"> 224 <item name="android:windowBackground">@android:color/black</item> 225 226 <item name="*android:windowAnimationStyle">@style/OutgoingAnimationStyle</item> 227 </style> 228 229 <style name="SipCallOptionHandlerTheme" parent="@android:style/Theme.Holo.NoActionBar"> 230 <item name="android:windowBackground">@android:color/black</item> 231 </style> 232 233 <style name="DialtactsDigitsTextAppearance"> 234 <item name="android:maxLines">1</item> 235 <item name="android:textSize">@dimen/dialpad_digits_text_size</item> 236 <item name="android:textColor">?android:attr/textColorPrimary</item> 237 <item name="android:freezesText">true</item> 238 <item name="android:editable">true</item> 239 <item name="android:cursorVisible">false</item> 240 </style> 241 242 <style name="PrimaryCallInfoPrimaryCallBanner"> 243 <item name="android:layout_alignParentTop">true</item> 244 </style> 245 <style name="PrimaryCallInfoSecondaryInfoContainer"> 246 <item name="android:layout_below">@id/primary_call_banner</item> 247 </style> 248 249 <style name="SecondaryCallInfoSecondaryCallName"> 250 <item name="android:layout_gravity">top|left</item> 251 </style> 252 <style name="SecondaryCallInfoSecondaryCallStatus"> 253 <item name="android:layout_gravity">top|right</item> 254 </style> 255 </resources> 256