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