android 删除底层的背景

来源:互联网 发布:javascript hmacsha1 编辑:程序博客网 时间:2024/06/05 11:23

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>

原创粉丝点击