我做过的事情:
1.设置主要活动的主题
android:theme="@android:style/Theme.Wallpaper.NoTitleBar"
2.设置phoneGap创建的webview的背景
appView.setBackgroundColor(Color.TRANSPARENT);
3.设置正文和html标签的背景
html,
body{
background-color: transparent;
}
但是,我的应用仍然有黑色背景,为什么???
答案 0 :(得分:2)
@Override
public void onCreate(Bundle savedInstanceState)
{
super.setIntegerProperty("backgroundColor", Color.TRANSPARENT);
...
}