java - studio - ¿Cómo configurar de forma programable drawableLeft en el botón de Android?
poner boton redondo en android (10)
***** Versión Kotlin *****
Use el siguiente fragmento de código para agregar un dibujo a la izquierda al botón:
val drawable = ContextCompat.getDrawable(context, R.drawable.ic_favorite_white_16dp)
button.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null)
.
Punto importante en el uso de Android Vector Drawable
Cuando esté utilizando un dibujo vectorial de Android y desee tener compatibilidad con versiones anteriores para API por debajo de 21 , agregue los siguientes códigos a:
En el nivel de aplicación build.gradle
:
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
En la clase de aplicación:
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
}
}
Estoy creando botones dinámicamente. Los diseñé usando XML primero, y estoy tratando de tomar el XML a continuación y programarlo.
<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>
Esto es lo que tengo hasta ahora. Puedo hacer todo menos lo dibujable.
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);
A continuación se muestra la forma de cambiar el color del icono de la izquierda en el texto de edición y establecerlo en el lado izquierdo.
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);
}
Hice esto:
// 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);
Para mí, funcionó:
button.setCompoundDrawablesWithIntrinsicBounds(com.example.project1.R.drawable.ic_launcher, 0, 0, 0);
Podría ser útil:
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);
Prueba esto:
((Button)btn).getCompoundDrawables()[0].setAlpha(btn.isEnabled() ? 255 : 100);
Puedes usar el método setCompoundDrawables
para hacer esto. Vea el ejemplo here . Utilicé esto sin usar el setBounds
y funcionó. Puedes intentarlo de cualquier manera.
ACTUALIZACIÓN : Copiar el código aquí en caso de que el enlace se caiga
Drawable img = getContext().getResources().getDrawable( R.drawable.smiley );
img.setBounds( 0, 0, 60, 60 );
txtVw.setCompoundDrawables( img, null, null, null );
o
Drawable img = getContext().getResources().getDrawable( R.drawable.smiley );
txtVw.setCompoundDrawablesWithIntrinsicBounds( img, null, null, null);
o
txtVw.setCompoundDrawablesWithIntrinsicBounds( R.drawable.smiley, 0, 0, 0);
Simplemente puedes probar esto también
txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);
como @ Jérémy Reynaud señaló, como se describe en esta answer , la forma más segura de establecer el dibujable izquierdo sin cambiar los valores de los otros dibujables (arriba, derecha e inferior) es usando los valores anteriores del botón con 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]);
Así se conservarán todos tus dibujables anteriores.
myEdtiText.setCompoundDrawablesWithIntrinsicBounds( R.drawable.smiley,0, 0, 0);