我这里有一个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中设置了drawablleft。

我想在代码中改变可绘制的。

有办法做这件事吗?或者在文本视图的代码中设置drawablleft ?


当前回答

你可以使用以下任何方法来设置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);

其他回答

你可以使用以下任何方法来设置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 left, int top, int right, int bottom)

在不需要图像的地方设置0

左边的Drawable示例:

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

或者,你可以使用setcompounddrawablesrelativewithintrinsic icbounds来尊重RTL/LTR布局。


提示:每当你知道任何XML属性,但不知道如何在运行时使用它。只需在开发人员文档中查看该属性的描述即可。如果运行时支持相关方法,您将在那里找到相关方法。例如,对于drawablleft

有两种方法可以使用XML或Java。 如果它是静态的,不需要更改,那么可以在XML中初始化。

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

现在如果你需要动态地改变图标,那么你可以通过 根据事件调用图标

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

工作为我改变文本视图左/右可绘制的颜色

for (drawable in binding.tvBloodPressure.compoundDrawablesRelative) {
            if (drawable != null) {
                drawable.colorFilter = PorterDuffColorFilter(
                    ContextCompat.getColor(binding.tvBloodPressure.context, color),
                    PorterDuff.Mode.SRC_IN
                )
            }
        }

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

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