微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐