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中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...