其他分享
首页 > 其他分享> > android – 从FrameLayout中删除前景视图

android – 从FrameLayout中删除前景视图

作者:互联网

我正在使用以下命令在frameLayout上绘制边框:

frameLayout.setForeground(getResources().getDrawable(R.drawable.blue_border));

现在我想删除这个前景drawable ..我怎么能这样做?

解决方法:

传递null作为参数应该足够了:

frameLayout.setForeground(null);

标签:android-framelayout,android,android-drawable
来源: https://codeday.me/bug/20190824/1712550.html