Home | History | Annotate | Download | only in values
      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="SettingsLight" parent="@android:style/Theme.Holo.Light">
    164         <item name="android:windowBackground">@color/phone_settings_background_color</item>
    165         <item name="android:actionBarStyle">@style/DialtactsActionBarStyle</item>
    166     </style>
    167 
    168     <style name="Empty" parent="@android:style/Theme.Holo">
    169         <item name="android:windowIsTranslucent">true</item>
    170         <item name="android:windowBackground">@android:color/transparent</item>
    171         <item name="android:windowContentOverlay">@null</item>
    172         <item name="android:windowNoTitle">true</item>
    173         <item name="android:windowIsFloating">true</item>
    174         <item name="android:backgroundDimEnabled">true</item>
    175     </style>
    176 
    177     <style name="InCallAnimationStyle" parent="@*android:style/Animation.Holo.Activity">
    178         <!-- Suppress task-to-task animation happening during the transition from
    179              OutgoingCallBroadcaster (and SipOptionHandler) to InCallScreen.
    180              The transition unexpectedly happens during the transition (inside the phone task),
    181              because InCallScreen is using android:launchMode="singleInstance".
    182 
    183              - taskOpenEnterAnimation/taskOpenExitAnimation is used for the first time
    184                InCallScreen instance is created.
    185 
    186              - taskToFrontEnterAnimation/taskToFrontExitAnimation is used when InCallScreen
    187                is already available.
    188                (Note that InCallScreen won't be destroyed once it is created)
    189 
    190              TODO: try removing the flag instead -->
    191         <item name="*android:taskOpenEnterAnimation">@*android:anim/activity_open_enter</item>
    192         <item name="*android:taskOpenExitAnimation">@*android:anim/activity_open_exit</item>
    193         <item name="*android:taskToFrontEnterAnimation">@*android:anim/activity_open_enter</item>
    194         <item name="*android:taskToFrontExitAnimation">@*android:anim/activity_open_exit</item>
    195     </style>
    196 
    197     <style name="OutgoingAnimationStyle" parent="@*android:style/Animation.Holo.Activity">
    198         <!-- Suppress task-to-task transition animation happening from
    199              DialtactsActivity to OutgoingCallBroadcaster. -->
    200         <item name="*android:taskOpenEnterAnimation">@*android:anim/activity_open_enter</item>
    201         <item name="*android:taskOpenExitAnimation">@*android:anim/activity_open_exit</item>
    202     </style>
    203 
    204     <!-- Theme for the InCallScreen activity.  This gives us a totally black
    205          window background instead of the default dark grey.  (We don't just use
    206          Theme.Black.NoTitleBar directly, since we want any popups or dialogs
    207          from the InCallScreen to have the correct holo style. -->
    208     <style name="Theme.InCallScreen" parent="@android:style/Theme.Holo.NoActionBar">
    209         <item name="android:windowBackground">@android:color/black</item>
    210 
    211         <item name="*android:windowAnimationStyle">@style/InCallAnimationStyle</item>
    212     </style>
    213 
    214     <style name="DialpadButtonStyle">
    215         <item name="android:layout_width">0dip</item>
    216         <item name="android:layout_height">match_parent</item>
    217         <item name="android:layout_weight">1</item>
    218         <item name="android:background">?android:attr/selectableItemBackground</item>
    219         <item name="android:soundEffectsEnabled">false</item>
    220     </style>
    221 
    222     <style name="ContactsActionBarStyle"
    223            parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
    224         <item name="android:background">@color/people_app_theme_color</item>
    225         <item name="android:backgroundStacked">@color/people_app_theme_color</item>
    226     </style>
    227 
    228     <style name="DialtactsActionBarStyle"
    229            parent="@android:style/Widget.Holo.Light.ActionBar">
    230         <item name="android:background">@color/phone_settings_actionbar_color</item>
    231         <!-- Empty icon -->
    232         <item name="android:icon">@android:color/transparent</item>
    233     </style>
    234 
    235     <style name="SimImportTheme"
    236            parent="@android:style/Theme.Holo.Light.DarkActionBar">
    237         <item name="android:actionBarStyle">@style/ContactsActionBarStyle</item>
    238     </style>
    239 
    240     <style name="EmergencyDialerTheme" parent="@android:style/Theme.Holo">
    241         <item name="android:windowBackground">@android:color/black</item>
    242     </style>
    243 
    244     <style name="OutgoingCallBroadcasterTheme" parent="@android:style/Theme.Holo.NoActionBar">
    245         <item name="android:windowBackground">@android:color/black</item>
    246 
    247         <item name="*android:windowAnimationStyle">@style/OutgoingAnimationStyle</item>
    248     </style>
    249 
    250     <style name="SipCallOptionHandlerTheme" parent="@android:style/Theme.Holo.NoActionBar">
    251         <item name="android:windowBackground">@android:color/black</item>
    252     </style>
    253 
    254     <style name="DialtactsDigitsTextAppearance">
    255         <item name="android:maxLines">1</item>
    256         <item name="android:textSize">@dimen/dialpad_digits_text_size</item>
    257         <item name="android:textColor">?android:attr/textColorPrimary</item>
    258         <item name="android:freezesText">true</item>
    259         <item name="android:editable">true</item>
    260         <item name="android:cursorVisible">false</item>
    261     </style>
    262 
    263     <style name="Theme.Transparent" parent="android:Theme">
    264         <item name="android:windowIsTranslucent">true</item>
    265         <item name="android:windowBackground">@android:color/transparent</item>
    266         <item name="android:windowContentOverlay">@null</item>
    267         <item name="android:windowNoTitle">true</item>
    268         <item name="android:windowIsFloating">true</item>
    269         <item name="android:backgroundDimEnabled">false</item>
    270     </style>
    271 </resources>
    272