在XML中编辑按钮内图片/图标的大小,可以通过设置按钮的属性来实现。具体步骤如下:
Button
标签定义的按钮。android:drawableLeft
、android:drawableRight
、android:drawableTop
、android:drawableBottom
等属性,根据需要选择对应的属性。@drawable/icon
,其中icon
是你想要显示的图片资源的名称。android:drawablePadding
属性来设置图片与按钮文本之间的间距,使用android:drawableWidth
和android:drawableHeight
属性来设置图片的宽度和高度。以下是一个示例代码:
<Button
android:id="@+id/myButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:drawableLeft="@drawable/icon"
android:drawablePadding="10dp"
android:drawableWidth="30dp"
android:drawableHeight="30dp" />
在上述示例中,按钮的左侧将显示一个宽度为30dp、高度为30dp的名为icon
的图片,并且图片与按钮文本之间有10dp的间距。
注意:以上示例中的@drawable/icon
是一个占位符,你需要将其替换为你自己的图片资源的名称。
推荐的腾讯云相关产品:腾讯云移动开发平台(https://cloud.tencent.com/product/mwp)
领取专属 10元无门槛券
手把手带您无忧上云