现在的位置: 首页 > 综合 > 正文

android 删除底层的背景

2013年12月10日 ⁄ 综合 ⁄ 共 327字 ⁄ 字号 评论关闭

android 删除底层的背景 ,

@Override
public void onCreate(Bundle icicle){
    super.onCreate(icicle);
    setContentView(R.layout.mainview);
    // 删除窗口背景
    getWindow().setBackgroundDrawable(null);
    ...

<resources>
    <style name="NoBackgroundTheme" parent="android:Theme">
        <item name="android:windowBackground">@null</item>
    </style>
</resources>

抱歉!评论已关闭.