我的应用程序的主题是 Light。我可以在操作栏中显示应用程序图标而不将应用程序样式从 Theme.Light 更改为 Theme.Holo.Light。
样式.xml
<style name="AppBaseTheme" parent="android:Theme.Light">
AndroidManifest.xml
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:logo="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
“EditText”等对象的样式使用 Theme.Light 更漂亮,这就是我不想改变它的原因。有可能或者我应该为每个对象编写样式并更改应用程序的主题。