Android联想定制ui

时间:2014-10-31 12:33:40

标签: android android-actionbar android-styles

我在Android 4.2.1联想P780设备中遇到了UI的奇怪行为。 它不会对ActionBar选项卡样式的自定义做出反应。它还使用自己的进度指示器和其他一些ui小部件。

以下是P780和所有其他测试设备的屏幕截图。 ActionBar的样式由http://jgilfelt.github.io/android-actionbarstylegenerator/生成。 但对于联想P780样式,定制不会改变任何内容。

Lenovo device

All other devices - expected behavior

下面是Manifest的一部分,其中设置了样式和styles.xml内容

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/Theme.Example" >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

<style name="Theme.Example" parent="@android:style/Theme.Holo">
    <item name="android:actionBarItemBackground">@drawable/selectable_background_example</item>
    <item name="android:popupMenuStyle">@style/PopupMenu.Example</item>
    <item name="android:dropDownListViewStyle">@style/DropDownListView.Example</item>
    <item name="android:actionBarTabStyle">@style/ActionBarTabStyle.Example</item>
    <item name="android:actionDropDownStyle">@style/DropDownNav.Example</item>
    <item name="android:actionBarStyle">@style/ActionBar.Solid.Example</item>
    <item name="android:actionModeBackground">@drawable/cab_background_top_example</item>
    <item name="android:actionModeSplitBackground">@drawable/cab_background_bottom_example</item>
    <item name="android:actionModeCloseButtonStyle">@style/ActionButton.CloseMode.Example</item>
</style>

<style name="ActionBar.Solid.Example" parent="@android:style/Widget.Holo.ActionBar.Solid">
    <item name="android:background">@drawable/ab_solid_example</item>
    <item name="android:backgroundStacked">@drawable/ab_stacked_solid_example</item>
    <item name="android:backgroundSplit">@drawable/ab_bottom_solid_example</item>
    <item name="android:progressBarStyle">@style/ProgressBar.Example</item>
</style>

<style name="ActionBar.Transparent.Example" parent="@android:style/Widget.Holo.ActionBar">
    <item name="android:background">@drawable/ab_transparent_example</item>
    <item name="android:progressBarStyle">@style/ProgressBar.Example</item>
</style>

<style name="ActionBarTabStyle.Example" parent="@android:style/Widget.Holo.ActionBar.TabView">
    <item name="android:background">@drawable/tab_indicator_ab_example</item>
</style>

Lenovo P780操作系统/固件信息:

enter image description here

1 个答案:

答案 0 :(得分:0)

所以问题终于解决了! 迁移到新的Lollipop支持库并使用AppCompat parent的样式后,一切正常。