调用方法actionbar.functions()
可能会产生
java. lang.null pointer exception
我正在使用Android Studio测试版。我的最低SDK版本15+。默认情况下它是holo,对吧?
的themes.xml
?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- the theme applied to the application or activity -->
<style name="CustomActionBarTheme"
parent="@android:style/Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarStyle">@style/MyActionBar</item>
</style>
<!-- ActionBar styles -->
<style name="MyActionBar"
parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
<item name="android:background">@color/app_theme</item>
</style>
在清单
中
android:label="@string/app_name"
android:theme="@style/CustomActionBarTheme" >