不推荐使用BitmapDrawable()方法

时间:2014-07-01 23:25:28

标签: android bitmap background

我可以使用什么来替换不推荐使用的BitmapDrawable()。我有以下代码。我只想清除这种观点的背景。

popupMessage = new PopupWindow(view, LayoutParams.MATCH_PARENT,
                    LayoutParams.WRAP_CONTENT);
            popupMessage.setContentView(view);

            // Clear the default translucent background
            popupMessage.setBackgroundDrawable(new BitmapDrawable());

提前致谢!

1 个答案:

答案 0 :(得分:2)

popupMessage.setBackgroundDrawable(null)将清除背景。

来自documentation

  

更改此弹出窗口的背景drawable。的背景   可以设置为null。