使用 Holo主题获取API级别> 14我在ActionBar
中为图标的左边距检索健康外观,如下所示:
<style name="AppBaseTheme" parent="@android:style/Theme.Holo">
将 Material-theme 应用于 AppCompat_v7 支持(不更改代码或使用首选的新ToolBar
)时,左边距会丢失。
<style name="AppBaseTheme" parent="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
为什么以及如何解决这个问题?
答案 0 :(得分:0)
作为第一个解决方法,我将图层列表可绘制资源名为 icon.xml 添加到 res / drawable / ,如下所示:
find(:css, "#school_data_selection_code_1").select "B"
find(:css, "#per_allocation_1").set "33"
find(:css, "#involvement_reservations_1").set "44"
并将此drawable引用为徽标,而不是 AndroidManifest.xml 中的原始图标本身:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@drawable/ic_launcher"
android:left="20dp"/>
</layer-list>