在TextView中以编程方式设置左可绘制


285

我在xml中有一个textView。

<TextView
        android:id="@+id/bookTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/checkmark"
        android:gravity="center_vertical"
        android:textStyle="bold"
        android:textSize="24dip"
        android:maxLines="1"
        android:ellipsize="end"/>

如您所见,我在xml中设置了DrawableLeft。

我想更改代码中的drawable。

无论如何要这样做吗?还是在代码中为文本视图设置drawableLeft?

Answers:


781

您可以使用setCompoundDrawablesWithIntrinsicBounds(int左,int顶部,int右,int底部)

将0设置为您不想要图像的位置

左侧的Drawable示例:

TextView textView = (TextView) findViewById(R.id.myTxtView);
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon, 0, 0, 0);

提示:只要您知道任何XML属性,但对如何在运行时使用它一无所知。只需在开发人员文档中转到该属性的描述即可。如果在运行时支持,您将在此处找到“ 相关方法”。即对于DrawableLeft


那么,在这种方法中我在哪里设置drawable呢?
coder_For_Life22,2011年

1
+1可以通过编程方式为TextView设置android:drawableLeft。Thanx队友
Paresh Mayani 2012年

35
+1用于添加提示。那应该是开发人员在使用文档时被告知的第一件事
gmjordan

@BrainCrash您是正确的,我误用了具有相同名称的较新方法。
deathemperor 2014年

2
您好,我正在使用此方法设置可绘制对象,但找不到它的getter计数器部分。我必须检查Compound textview是否具有一些可绘制对象。我怎么做?尝试textview.getCompoundDrawablesRelative()[0]mContext.getResources().getDrawable(R.drawable.my_drawable)
拉维


6

您可以使用以下任何一种方法在TextView上设置Drawable:

1- setCompoundDrawablesWithIntrinsicBounds(int,int,int,int)

2- setCompoundDrawables(Left_Drawable,Top_Drawable,Right_Drawable,Bottom_Drawable)

要从资源中获取图片,可以使用:

getResources().getDrawable(R.drawable.your_drawable_id);

不,setCompoundDrawablesWithIntrinsicBounds(int,int,int,int)是API Levet 3,来自您自己的链接...
BrainCrash 2014年

1

使用Kotlin:

您可以创建扩展功能或直接使用setCompoundDrawablesWithIntrinsicBounds

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

如果需要调整可绘制对象的大小,则可以使用此扩展功能。

textView.leftDrawable(R.drawable.my_icon, R.dimen.icon_size)

fun TextView.leftDrawable(@DrawableRes id: Int = 0, @DimenRes sizeRes: Int) {
    val drawable = ContextCompat.getDrawable(context, id)
    val size = resources.getDimensionPixelSize(sizeRes)
    drawable?.setBounds(0, 0, size, size)
    this.setCompoundDrawables(drawable, null, null, null)
}

为了真正实现幻想,请创建一个允许大小和/或颜色修改的包装器。

textView.leftDrawable(R.drawable.my_icon, colorRes = R.color.white)

fun TextView.leftDrawable(@DrawableRes id: Int = 0, @DimenRes sizeRes: Int = 0, @ColorInt color: Int = 0, @ColorRes colorRes: Int = 0) {
    val drawable = drawable(id)
    if (sizeRes != 0) {
        val size = resources.getDimensionPixelSize(sizeRes)
        drawable?.setBounds(0, 0, size, size)
    }
    if (color != 0) {
        drawable?.setColorFilter(color, PorterDuff.Mode.SRC_ATOP)
    } else if (colorRes != 0) {
        val colorInt = ContextCompat.getColor(context, colorRes)
        drawable?.setColorFilter(colorInt, PorterDuff.Mode.SRC_ATOP)
    }
    this.setCompoundDrawables(drawable, null, null, null)
}

0

Kotlin扩展+可绘制对象周围的一些填充

fun TextView.addDrawable(drawable: Int) {
val imgDrawable = ContextCompat.getDrawable(context, drawable)
compoundDrawablePadding = 32
setCompoundDrawablesWithIntrinsicBounds(imgDrawable, null, null, null)
}

0

有两种方法可以使用XML或Java。如果它是静态的并且不需要更改,则可以使用XML进行初始化。

  android:drawableLeft="@drawable/cloud_up"
    android:drawablePadding="5sp"

现在,如果您需要动态更改图标,则可以通过基于事件调用图标来完成

       textViewContext.setText("File Uploaded");
textViewContext.setCompoundDrawablesWithIntrinsicBounds(R.drawable.uploaded, 0, 0, 0);

-8
static private Drawable **scaleDrawable**(Drawable drawable, int width, int height) {

    int wi = drawable.getIntrinsicWidth();
    int hi = drawable.getIntrinsicHeight();
    int dimDiff = Math.abs(wi - width) - Math.abs(hi - height);
    float scale = (dimDiff > 0) ? width / (float)wi : height /
            (float)hi;
    Rect bounds = new Rect(0, 0, (int)(scale * wi), (int)(scale * hi));
    drawable.setBounds(bounds);
    return drawable;
}

这不能回答问题。预期与TextView相关的答案。
瑞克(Rick)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.