J'utilise une Button
créée à l'aide du code suivant
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);
J'ai une image dans le chemin @drawable/new_todo_image
à définir comme arrière-plan pour le bouton. Comment le définir à la Button
par programme?
pour définir l'image de fond pour le bouton qui se trouve dans le dossier pouvant être dessiné, utilisez le code ci-dessous
btn.setBackgroundResource(R.drawable.new_todo_image);
Essaye ça:
btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.new_todo_image));
Dans Android studio pour définir l’arrière-plan du bouton, écrivez le code suivant:
int image_resid = getApplicationContext().getResources().getIdentifier("image_name", "drawable", getApplicationContext().getPackageName());
button.setBackgroundResource(image_resid);
Essayez comme ça
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));
}
essaye ça:
btn.setBackgroundDrawable(getResources().getDrawable(R.drawable.new_todo_image));