una texto studio poner los imagen diseño con como color botones boton asignar android button imagebutton

texto - diseño de botones android studio



Cómo agregar imagen(izquierda) y texto en el botón (3)

¿Cómo agregar imagen (izquierda) y texto en el botón?

Por ilustracion:


También podemos gestionar el tamaño de dibujo mientras lo hacemos programáticamente.

Drawable dr = getResources().getDrawable(R.drawable.mag_green); dr.setBounds(0, 0, 43, 40); //Left,Top,Right,Bottom search_bar.setCompoundDrawables(dr, null , null , null);


use android:drawableLeft="@drawable/image" en su diseño xml

También puedes hacer esto desde el código

Drawable icon= getContext().getResources().getDrawable( R.drawable.image); button.setCompoundDrawablesWithIntrinsicBounds( icon, null, null, null );


android:text="Documentos" android:drawableLeft= "@drawable/ic_document"