绿色机器人:如何设置GDActivity的背景图片



有没有人能提供一个清晰的例子,说明如何在GDActivity的构造函数方法(或其他方式)中设置背景图片?

我已经指出了怎么做。

GDActivity使用特殊的布局结构:

<?xml version="1.0" encoding="utf-8"?>
<view
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        class="greendroid.widget.ActionBarHost"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/gd_action_bar_host">
    <view
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            class="greendroid.widget.ActionBar"
            android:id="@+id/gd_action_bar"
            />
    <FrameLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/gd_action_bar_content_view"/>
</view>

所以当我们遵循逻辑时,我们应该为内容视图框架设置背景图片,对吗?

但这不是真的。

这是不工作:

Drawable mBackgroundDrawable = getResources().getDrawable(R.drawable.splash);
getContentView().setBackgroundDrawable(mBackgroundDrawable);

我们必须使用对窗口的标准访问。

Drawable mBackgroundDrawable = getResources().getDrawable(R.drawable.splash);
getWindow().setBackgroundDrawable(mBackgroundDrawable);

请指正

相关内容

  • 没有找到相关文章

最新更新