如何通过代码设置按钮背景图片

发布于 2024-12-04 09:52:32 字数 425 浏览 0 评论 0原文

我正在使用使用以下代码创建的 Button

LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);

Button btn = new Button(this);
btn.setOnClickListener(newtodobtn);
btn.setText("New Todo");

btn.setBackgroundDrawable(new Button(this).getBackground());

ll.addView(btn);

我在路径 @drawable/new_todo_image 中有一个图像来设置为按钮的背景。如何以编程方式将其设置为 Button

I am using a Button created using following code

LinearLayout ll = new LinearLayout(this);
ll.setOrientation(LinearLayout.VERTICAL);

Button btn = new Button(this);
btn.setOnClickListener(newtodobtn);
btn.setText("New Todo");

btn.setBackgroundDrawable(new Button(this).getBackground());

ll.addView(btn);

I have an image in path @drawable/new_todo_image to set as background for the button. How to set it to the Button programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

盗心人 2024-12-11 09:52:36

在android studio中设置按钮背景图像编写以下代码:

int image_resid = getApplicationContext().getResources().getIdentifier("image_name", "drawable", getApplicationContext().getPackageName());
button.setBackgroundResource(image_resid);

In android studio to set Button background Image write following code :

int image_resid = getApplicationContext().getResources().getIdentifier("image_name", "drawable", getApplicationContext().getPackageName());
button.setBackgroundResource(image_resid);
九八野马 2024-12-11 09:52:36

您应该将 png 文件放入 Drawable 文件夹中,然后尝试以下代码:

Button buttonSES = (Button) findViewById(R.id.buttonSES)    
buttonSES.setBackgroundResource(R.drawable.image1);  //image1.png 

You should put your png files into Drawable folder, then try these codes:

Button buttonSES = (Button) findViewById(R.id.buttonSES)    
buttonSES.setBackgroundResource(R.drawable.image1);  //image1.png 
半暖夏伤 2024-12-11 09:52:35

试试这个:

btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.new_todo_image));

Try this:

btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.new_todo_image));
煞人兵器 2024-12-11 09:52:35

试试这个:

btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.new_todo_image));

try this:

btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.new_todo_image));
昇り龍 2024-12-11 09:52:35

尝试这样

final int sdk = android.os.Build.VERSION.SDK_INT;
    if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN)
     {
      mBtn.setBackgroundDrawable( getResources().getDrawable(R.drawable.new_todo_image) );
     } 
    else
       {
       mBtn.setBackground( getResources().getDrawable(R.drawable.new_todo_image));
       }

Try like this

final int sdk = android.os.Build.VERSION.SDK_INT;
    if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN)
     {
      mBtn.setBackgroundDrawable( getResources().getDrawable(R.drawable.new_todo_image) );
     } 
    else
       {
       mBtn.setBackground( getResources().getDrawable(R.drawable.new_todo_image));
       }
绝不服输 2024-12-11 09:52:34

要为可绘制文件夹中的按钮设置背景图像,请使用以下代码

btn.setBackgroundResource(R.drawable.new_todo_image);

for set background image for button which is in drawable folder then use below code

btn.setBackgroundResource(R.drawable.new_todo_image);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文