gpt4 book ai didi

c# - 在 Xamarin.Android 上以编程方式绘制 DrawableLeft?

转载 作者:太空宇宙 更新时间:2023-11-03 23:07:24 25 4
gpt4 key购买 nike

我正在开发 Xamarin Android 应用程序,我正在通过我的 styles.xml 将以下样式设置为按钮

<style name="button_style_1" parent="@style/button_style_default">
<item name="android:drawableLeft">@drawable/my_icon</item>
<item name="android:drawablePadding">28dp</item>
<item name="android:padding">5dp</item>
</style>

一切正常,但现在我需要以编程方式将上述属性设置到我的按钮。在 Xamarin.Android 中执行此操作的最佳方法是什么?

最佳答案

对于 drawableLeft

 var draw = ContextCompat.Drawable(this, Resource.Drawable.your_drawable)
button.SetCompoundDrawablesWithIntrinsicBounds(draw, null, null, null);

Note : this is context of the Activity.

drawablePadding 使用CompoundDrawablePadding

对于填充,使用SetPadding

重要提示:

CompoundDrawablePadding with a negative padding and SetPadding with a positive padding to counter creates a centered effect.

检查一下然后告诉我。

关于c# - 在 Xamarin.Android 上以编程方式绘制 DrawableLeft?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40692085/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com