gpt4 book ai didi

android - 通过使用 2 个 NumberPickers 创建对话框需要帮助

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

我正在尝试使用 2 个 NumberPickers 创建一个对话框。我希望它们是默认的 Holo 主题样式。我找不到任何好的例子。到目前为止我得到了:

    LayoutInflater inflater = (LayoutInflater)
getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View npView = inflater.inflate(R.layout.number_picker_dialog, null);
NumberPicker minPicker = (NumberPicker) npView.findViewById(R.id.min_picker);
minPicker.setMaxValue(100);
minPicker.setMinValue(0);
NumberPicker maxPicker = (NumberPicker) npView.findViewById(R.id.max_picker);
maxPicker.setMaxValue(100);
maxPicker.setMinValue(0);

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Text Size:");
builder.setView(npView);
builder.setPositiveButton("Okay",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {

}
});
builder.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
}
});
dialog = builder.create();
dialog.show();

number_picker_dialog xml:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:holo="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:gravity="center">

<NumberPicker
android:id="@+id/min_picker"
android:width="100dip"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:/>

<NumberPicker
android:id="@+id/max_picker"
android:width="100dip"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>

</LinearLayout>

但是颜色选择器文本是白色的(就像背景一样),我无法设置 NumberPicker 的文本颜色。

我如何设置 textColor 或者有人知道一个好的 NumberPicker 示例吗?

最佳答案

我发现了为什么我的 NumberPicker 不是 Holo.Light 样式的问题:

而不是调用:

   LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View npView = inflater.inflate(R.layout.number_picker_dialog, null);

我通过调用解决了它:

 View npView = getLayoutInflater().inflate(R.layout.number_picker_dialog, null);

关于android - 通过使用 2 个 NumberPickers 创建对话框需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13882707/

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