gpt4 book ai didi

android - 自定义复选框可绘制的大小?

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

我创建了一个可绘制的自定义复选框:

<selector  xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_checked="false"
android:drawable="@drawable/ic_checkbox_unchecked" />
<item
android:state_checked="true"
android:drawable="@drawable/ic_checkbox_checked" />
<item
android:drawable="@drawable/ic_checkbox_unchecked" />
</selector>

我是这样使用的:

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:button="@drawable/checkbox"
/>

我创建了两张可绘制图像(一张用于未选中,一张用于选中),每种尺寸各一张(xxxhdpixxhdpi 等)。

然而,我的复选框出来是这样的:

enter image description here

为什么这么大?我怎样才能把它缩小到 20x20dp?

最佳答案

尝试用 wrapcontent 代替

<CheckBox
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:button="@drawable/checkbox"
/>

或者

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:button="@drawable/checkbox"
android:scaleX="0.40"
android:scaleY="0.40"
/>

更改比例值,直到达到所需的大小

关于android - 自定义复选框可绘制的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33772486/

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