gpt4 book ai didi

android - 如何更改微调器复选框的大小或颜色?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:06:21 25 4
gpt4 key购买 nike

我正在开发一个 Android 项目,它允许用户在警告对话框中选择项目列表(见下图)。

enter image description here

我正在使用 android.widget.spinner。但是复选框不太明显。

我正在尝试对复选框进行个性化设置,因为这种复选框是默认设置的。

那么是否可以用我自己的复选框来替换它们呢?

最佳答案

在您的布局文件中尝试这种方式。

main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearlayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/border" <--- android built-in style. You can define your own whichever you like. Check for it.
android:orientation="horizontal" >
<CheckBox
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp" />
<TextView
android:id="@+id/Textname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="7dp"
android:textColor="#FAFAFA"
android:textSize="14dp"
android:textStyle="bold" />
</LinearLayout>

关于android - 如何更改微调器复选框的大小或颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13987025/

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