编程语言
首页 > 编程语言> > android – 以编程方式在TextView中设置左drawable

android – 以编程方式在TextView中设置左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?

解决方法:

你可以使用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

标签:android,textview,android-drawable
来源: https://codeday.me/bug/20190918/1810461.html