GDActivity
任何人都可以提供如何在其构造方法(或其他方式)中设置背景图片的清晰示例吗?
问问题
220 次
1 回答
0
我已经指出了如何做到这一点。
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);
任何更正将不胜感激。
于 2013-03-22T11:05:57.460 回答