标签: android android-drawable android-framelayout
我使用以下命令在frameLayout上绘制边框:
frameLayout.setForeground(getResources().getDrawable(R.drawable.blue_border));
现在我想删除这个前景drawable ..我该怎么做?
答案 0 :(得分:6)
传递null作为参数应该足够了:
frameLayout.setForeground(null);