我正在使用actionbar sherlock,它运行良好。我唯一的问题是弄清楚如何为活动使用的区域设置背景图像。我最终得到的就是为动作栏本身设置背景图像。
任何建议都非常感谢
马丁
答案 0 :(得分:1)
windowBackground
属性非常适用于此。
<style name="MyTheme" parent="Theme.Sherlock">
<item name="android:windowBackground">here!</item>
</style>
答案 1 :(得分:0)
只需在活动中设置主要布局的背景。 例如。在你的布局文件中:
<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" >
答案 2 :(得分:0)
只需在onCreate()中编写以下代码行。
getSupportActionBar().setIcon(R.drawable.your_image);