如何以编程方式设置drawablleft在Android按钮?

我在动态创建按钮。我首先使用XML样式他们,我试图采取下面的XML,使其编程。

<Button
android:id="@+id/buttonIdDoesntMatter"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="buttonName"
android:drawableLeft="@drawable/imageWillChange"
android:onClick="listener"
android:layout_width="fill_parent">
</Button>

这是我目前得到的。我什么都能做,就是画不出来。

linear = (LinearLayout) findViewById(R.id.LinearView);
Button button = new Button(this);
button.setText("Button");
button.setOnClickListener(listener);
button.setLayoutParams(
new LayoutParams(
android.view.ViewGroup.LayoutParams.FILL_PARENT,
android.view.ViewGroup.LayoutParams.WRAP_CONTENT
)
);


linear.addView(button);
316956 次浏览

您可以使用setCompoundDrawables方法来做到这一点。参见示例在这里。我使用这个没有使用setBounds,它工作。两种方法你都可以试试。

更新:在这里复制代码,以防链接出现故障

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
img.setBounds(0, 0, 60, 60);
txtVw.setCompoundDrawables(img, null, null, null);

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
txtVw.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);

# EYZ0

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);

简单地说,你也可以试试这个

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);

对我来说,它起作用了:

button.setCompoundDrawablesWithIntrinsicBounds(com.example.project1.R.drawable.ic_launcher, 0, 0, 0);

试试这个:

((Button)btn).getCompoundDrawables()[0].setAlpha(btn.isEnabled() ? 255 : 100);

我是这样做的:

 // Left, top, right, bottom drawables.
Drawable[] drawables = button.getCompoundDrawables();
// get left drawable.
Drawable leftCompoundDrawable = drawables[0];
// get new drawable.
Drawable img = getContext().getResources().getDrawable(R.drawable.ic_launcher);
// set image size (don't change the size values)
img.setBounds(leftCompoundDrawable.getBounds());
// set new drawable
button.setCompoundDrawables(img, null, null, null);
myEdtiText.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);

正如@Jérémy Reynaud指出的,正如在回答中所描述的,在不改变其他可绘制对象(顶部,右侧和底部)的情况下,设置左侧可绘制对象最安全的方法是使用按钮setCompoundDrawablesWithIntrinsicBounds中的先前值:

Drawable leftDrawable = getContext().getResources()
.getDrawable(R.drawable.yourdrawable);


// Or use ContextCompat
// Drawable leftDrawable = ContextCompat.getDrawable(getContext(),
//                                        R.drawable.yourdrawable);


Drawable[] drawables = button.getCompoundDrawables();
button.setCompoundDrawablesWithIntrinsicBounds(leftDrawable,drawables[1],
drawables[2], drawables[3]);

所以你之前画的东西都会被保留。

可能会有帮助:

TextView location;
location=(TextView)view.findViewById(R.id.complain_location);
//in parameter (left,top,right,bottom) any where you wnat to put
location.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.arrow,0);

芬兰湾的科特林版本

使用下面的代码片段添加一个可绘制的左侧按钮:

val drawable = ContextCompat.getDrawable(context, R.drawable.ic_favorite_white_16dp)
button.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null)

使用Android Vector Drawable的要点

当你正在使用Android矢量绘图并且想要向后兼容空气污染指数低于21时,添加以下代码到:

在应用关卡build.gradle中:

android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}

应用类:

class MyApplication : Application() {


override fun onCreate() {
super.onCreate()
        

AppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
}


}

下面是改变编辑文本中左侧图标的颜色并将其设置在左侧的方法。

 Drawable img = getResources().getDrawable( R.drawable.user );
img.setBounds( 0, 0, 60, 60 );
mNameEditText.setCompoundDrawables(img,null, null, null);


int color = ContextCompat.getColor(this, R.color.blackColor);


if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
DrawableCompat.setTint(img, color);


} else {
img.mutate().setColorFilter(color, PorterDuff.Mode.SRC_IN);
}

试试这个:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
fillButton[i].setBackground(getBaseContext().getResources().getDrawable(R.drawable.drawable_name));
}
else {
fillButton[i].setBackgroundColor(Color.argb(255,193,234,203));
}

如果您正在使用drawableStartdrawableEnddrawableTopdrawableBottom;你必须使用setCompoundDrawablesRelativeWithIntrinsicBounds

edittext.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, R.drawable.anim_search_to_close, 0)

为我工作。设置可绘制在右边

tvBioLive.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_close_red_400_24dp, 0)

添加一个Kotlin扩展

如果您要经常这样做,那么添加扩展可以使您的代码更具可读性。按钮扩展TextView;如果你想要更窄,使用按钮。

fun TextView.leftDrawable(@DrawableRes id: Int = 0) {
this.setCompoundDrawablesWithIntrinsicBounds(id, 0, 0, 0)
}

要使用扩展,只需调用

view.leftDrawable(R.drawable.my_drawable)

任何时候你需要清除,不要传递一个参数或另一个名为removeDrawables的扩展