以编程方式在TextView中设置左drawable

时间:2011-08-03 19:08:48

标签: android textview android-drawable

我在这里有一个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"/>

如您所见,我将DrawableLeft设置为xml。

我想在代码中更改drawable。

无论如何都要这样做吗?或者在文本视图的代码中设置drawableLeft?

7 个答案:

答案 0 :(得分:686)

您可以使用setCompoundDrawablesWithIntrinsicBounds(int left, int top, int right, int bottom)

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

左边的Drawable示例:

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

提示:每当您知道任何XML属性但没有关于如何在运行时使用它的线索时。只需转到开发人员doc中对该属性的描述即可。如果在运行时支持它,你会发现相关方法。即For DrawableLeft

答案 1 :(得分:14)

here我看到方法setCompoundDrawablesWithIntrinsicBounds(int,int,int,int)可用于执行此操作。

答案 2 :(得分:7)

使用Kotlin:

您可以创建扩展功能,也可以直接使用 .navbar { display: flex; list-style-type: none; flex-direction: column; align-items: center; justify-content: space-between; height: 150px; margin: 0%; background-image: linear-gradient(grey, black); a { text-decoration: none; font-family: "Arial", sans-serif; color: blanchedalmond; &:hover { color: gray; background-color: goldenrod; } } }

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)
}

答案 3 :(得分:5)

您可以使用以下任何方法在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);

答案 4 :(得分:0)

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

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

答案 5 :(得分:0)

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

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

现在,如果您需要动态更改图标,则可以通过 根据事件调用图标

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

答案 6 :(得分:-9)

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;
}