android中的关于去掉背景的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android中的关于去掉背景的问题相关的知识,希望对你有一定的参考价值。

private void fulibt()
fulibutton.setOnClickListener(flbt);

private Button.OnClickListener flbt= new ImageButton.OnClickListener()

public void onClick(View v)
str="2";
Button dt=(Button) findViewById(R.id.fulibutton);
dt.setBackgroundResource(R.drawable.iac);
private void setclear()
clearbutton.setOnClickListener(clearBMI);

private Button.OnClickListener clearBMI=new Button.OnClickListener()

public void onClick(View v)
view_result.setText("");
怎么在这个方法里把上面添加的背景给去掉呢
;

android去掉背景(颜色或者图片)

  view.setBackgroundResource(0);
根据文档public void setBackgroundResource (int resid)
       Since: API Level 1
Set the background to a given resource. The resource should refer to a Drawable object or 0 to remove the background.
  所以设置为o就是删除背景。
参考技术A 在你那里加上
dt.setBackgroundResource(0);
根据文档public void setBackgroundResource (int resid)
Since: API Level 1
Set the background to a given resource. The resource should refer to a Drawable object or 0 to remove the background.
所以设置为o就是删除背景。
参考技术B view_result是什么 代码拷全一点,图片是背景吗?如果是LinearLayout的话 ,setBackgroundColor或者Resouce,更改下本回答被提问者采纳

以上是关于android中的关于去掉背景的问题的主要内容,如果未能解决你的问题,请参考以下文章

android button边框怎么去掉

请问Android中怎么去掉TextView的背景?

android怎么让button去掉边框

怎么设置Android Studio代码字体及背景颜色

Android中的Button怎么在点击更换背景?点击后又恢复原来的背景?

Android com.daimajia.slider.library.SliderLayout 去掉底部半透明标题背景