Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53376cb1 authored by Adam Powell's avatar Adam Powell
Browse files

Fix bug 5185375 - ICS Fit+Finish: Full-screen IME

Have extract mode use a light theme to better match the previous behavior.

Change-Id: I7d8f78a6465fee078de03b0a77040296d130a78d
parent 77eb57fc
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@
            android:layout_height="match_parent"
            android:paddingLeft="8dip"
            android:paddingRight="8dip"
            android:background="@android:drawable/keyboard_accessory_bg_landscape"
        >
        
        <android.inputmethodservice.ExtractButton android:id="@+id/inputExtractAction"
+2 −2
Original line number Diff line number Diff line
@@ -717,9 +717,9 @@ please see themes_device_defaults.xml.
         {@link android.inputmethodservice.InputMethodService} class.
         this inherits from Theme.Panel, but sets up IME appropriate animations
         and a few custom attributes. -->
    <style name="Theme.Holo.InputMethod" parent="Theme.Holo.Panel">
    <style name="Theme.Holo.InputMethod" parent="Theme.Holo.Light.Panel">
        <item name="android:windowAnimationStyle">@android:style/Animation.InputMethod</item>
        <item name="android:imeFullscreenBackground">@android:drawable/input_method_fullscreen_background_holo</item>
        <item name="android:imeFullscreenBackground">@android:drawable/screen_background_selector_light</item>
        <item name="android:imeExtractEnterAnimation">@android:anim/input_method_extract_enter</item>
        <item name="android:imeExtractExitAnimation">@android:anim/input_method_extract_exit</item>
    </style>