actionbarsherlock - 如何为主题中的活动区域设置背景图像

时间:2012-08-30 16:10:55

标签: android background actionbarsherlock

我正在使用actionbar sherlock,它运行良好。我唯一的问题是弄清楚如何为活动使用的区域设置背景图像。我最终得到的就是为动作栏本身设置背景图像。

任何建议都非常感谢

马丁

3 个答案:

答案 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);