gpt4 book ai didi

android - 如何缩放按钮内的可绘制对象,以便按钮大小不受可绘制对象的控制?

转载 作者:行者123 更新时间:2023-11-30 01:03:17 28 4
gpt4 key购买 nike

在下面的屏幕截图中,我为按钮和 ImageView 使用了相同的图标,但我似乎无法控制按钮内图标的缩放比例,我可以通过降低分辨率使图标变小并缩小按钮,但这会使图标像素化。有什么办法可以让高分辨率图标带有按钮,并让按钮控制整体大小?

enter image description here

按钮的 XML:

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Email"
android:id="@+id/em_btn"
android:layout_gravity="center_horizontal"
android:backgroundTint="#ffffff"
android:drawableLeft="@drawable/email2"/>

最佳答案

Drawable emailImg = getResources().getDrawable(R.drawable.email2);
drawable.setBounds(0, 0, (int)(drawable.getIntrinsicWidth()*0.1),
(int)(drawable.getIntrinsicHeight()*0.1));
ScaleDrawable scaledImg = new ScaleDrawable(emailImg, 0, 10, 10);
Button button = (Button)findViewById(R.id.em_btn);
button.setCompoundDrawables(scaledImg.getDrawable(), null, null, null);

试试这个

关于android - 如何缩放按钮内的可绘制对象,以便按钮大小不受可绘制对象的控制?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39183767/

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