如何在运行时设置按钮的属性“android:drawableTop”

时间:2011-02-07 09:29:41

标签: android layout

如何在运行时设置按钮的属性“android:drawableTop

8 个答案:

答案 0 :(得分:123)

使用

button.setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom);

将Drawables(如果有)设置为显示在文本的左侧,上方,右侧和下方。如果你不想在那里使用Drawable,请使用0。 Drawables的界限将设置为其内在界限。

如果您使用

button.setCompoundDrawables(left, top, right, bottom);

将Drawables(如果有)设置为显示在文本的左侧,上方,右侧和下方。如果你不想在那里使用Drawable,请使用null。 Drawables必须已经调用了setBounds(Rect)

答案 1 :(得分:45)

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

答案 2 :(得分:21)

final Drawable drawableTop = getResources().getDrawable(R.drawable.btn_check_buttonless_on);

btnByCust.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {


 btnByCust.setCompoundDrawablesWithIntrinsicBounds(null, drawableTop , null, null);

        }
    });

答案 3 :(得分:2)

        Button button = (Button) findViewById(R.id.button);
        button.setCompoundDrawables(left, top, right, bottom);

答案 4 :(得分:2)

我使用此代码使用左侧带有“自定义图像”的“Theme.Holo”按钮,并使用从各种方式调用的函数更改它(图像)。

protected void app_dibujarLogojuego() {
    if(bitmaplogojuego!=null){
        bitmaplogojuego.recycle();
        bitmaplogojuego=null;
    }
    Drawable LOGO = null;
    if(verjuego.equals("COSA1")){  LOGO = getResources().getDrawable(R.drawable.img_logo_COSA1);  }
    if(verjuego.equals("COSA2")){  LOGO = getResources().getDrawable(R.drawable.img_logo_COSA2);  }
    if(verjuego.equals("COSA3")){  LOGO = getResources().getDrawable(R.drawable.img_logo_COSA3);  }
    if(verjuego.equals("COSA4")){  LOGO = getResources().getDrawable(R.drawable.img_logo_COSA4);  }

    BUTTON_DECLARED_ID.setCompoundDrawablesWithIntrinsicBounds(LOGO, null , null, null);
}

答案 5 :(得分:0)

 btn.setBackgroundResource(R.drawable.your_image_name_here);

答案 6 :(得分:0)

如果您使用的是Kotlin,您可以使用扩展方法使事物看起来很优雅。

fun TextView.setDrawableTop(iconId: Int) {
    val icon = this.context?.resources?.getDrawable(iconId)
    this.setCompoundDrawablesWithIntrinsicBounds(null, icon, null, null)
}

然后你可以像这样使用它:

// myTextView: TextView
myTextView.setDrawableTop(R.drawable.ic_happy)

答案 7 :(得分:0)

创建这样的扩展功能,并设置顶部可绘制内容

tvAccepted.setTopDrawable(R.drawable.ic_preparing_order_active)

fun TextView.setTopDrawable(icon: Int) {
    this.setCompoundDrawablesRelativeWithIntrinsicBounds(0,icon,0,0)
}

其中setCompoundDrawablesRelativeWithIntrinsicBounds(左/开始,顶部,右/结束,底部)