我正在使用 actionbar sherlock,效果很好。我唯一的问题是弄清楚如何为活动使用的区域设置背景图像。我最终得到的只是为操作栏本身设置背景图像。
任何建议高度赞赏
马丁
我正在使用 actionbar sherlock,效果很好。我唯一的问题是弄清楚如何为活动使用的区域设置背景图像。我最终得到的只是为操作栏本身设置背景图像。
任何建议高度赞赏
马丁
该windowBackground
属性非常适合此。
<style name="MyTheme" parent="Theme.Sherlock">
<item name="android:windowBackground">here!</item>
</style>
只需在您的活动中为您的主要布局设置背景。例如。在您的布局文件中:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/myImage" >
只需在 onCreate() 中编写以下代码行。
getSupportActionBar().setIcon(R.drawable.your_image);