gpt4 book ai didi

android 数字选择器文本颜色

转载 作者:太空狗 更新时间:2023-10-29 16:33:38 29 4
gpt4 key购买 nike

我希望数字选择器中的值是白色的。我做了以下代码,使其默认为黑色。

XML代码:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@layout/gradient_blue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="25sp"
android:textColor="#fff"
android:textStyle="bold"
android:text="Please select difficulty level"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@drawable/category_seperator"/>

<LinearLayout
android:padding="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">

<NumberPicker
android:id="@+id/numberPicker1"
android:layout_width="wrap_content"
android:minWidth="100dp"
android:layout_margin="10dp"

android:layout_height="wrap_content"/>
<!--#019687-->
<Button
android:background="#019687"

android:id="@+id/setting_confirm"
android:layout_width="wrap_content"
android:layout_margin="10dp"
android:layout_height="wrap_content"
android:textSize="30sp"
android:textColor="#fff"
android:padding="15dp"
android:text="OK"/>


</LinearLayout>

</LinearLayout>

Java代码:

    final Dialog d = new Dialog(context);
d.requestWindowFeature(Window.FEATURE_NO_TITLE);

d.setContentView(R.layout.dialog_settings);

final NumberPicker n = (NumberPicker) d.findViewById(R.id.numberPicker1);

String easy = Html.fromHtml("<font color=\"white\">EASY</font>").toString();
String medium = Html.fromHtml("<font color=\"white\">MEDIUM</font>")+"";
String hard = Html.fromHtml("<font color=\"white\">HARD</font>")+"";
String tough = Html.fromHtml("<font color=\"white\">TOUGH</font>")+"";

// String[] a = {"EASY", "MEDIUM", "HARD", "TOUGH"};
String [ ] a = {easy,medium,hard,tough};
n.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
n.setDisplayedValues(a);


n.setMaxValue(3);
n.setMinValue(0);
n.setWrapSelectorWheel(true);

d.show();

我尝试使用 html 将颜色更改为代码中所示。我还尝试使用 getChildAt 更改颜色并将其转换到导致应用程序崩溃的 TextView。

Number picker text colour

最佳答案

根据我们在评论中的讨论,代码 here ,需要来自 Color 类的参数。使用此类传递颜色。

关于android 数字选择器文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33645962/

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