gpt4 book ai didi

java - 使用 SimonVT 数字选择器并且无法膨胀 xml

转载 作者:行者123 更新时间:2023-11-29 21:18:54 25 4
gpt4 key购买 nike

所以我正在使用 SimonVT number picker尝试创建一个与 Gingerbread 一起使用的数字选择器。不幸的是,当我尝试将其设置为对话框时,它在尝试扩充 xml 时崩溃。老实说,我已经在这上面花了一段时间,但看在我的份上,我想不通。其他人可以吗?

这是它崩溃的地方:

import net.simonvt.numberpicker.NumberPicker;
import android.app.AlertDialog;
import android.app.Dialog;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import android.view.View;

public class setSnoozeMethodDialog extends DialogFragment{

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {

AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
View view = getActivity().getLayoutInflater().inflate(R.layout.set_snooze_dialog, null);

NumberPicker np = (NumberPicker) view.findViewById(R.id.numberPicker);
np.setMaxValue(20);
np.setMinValue(0);
np.setFocusable(true);
np.setFocusableInTouchMode(true);

builder.setView(view);

return builder.create();
}

这是在膨胀时遇到问题的 xml

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

<net.simonvt.numberpicker.NumberPicker
android:id="@+id/numberPicker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

这是错误

01-07 23:44:33.308: E/AndroidRuntime(623): FATAL EXCEPTION: main
01-07 23:44:33.308: E/AndroidRuntime(623): android.view.InflateException: Binary XML file line #8: Error inflating class net.simonvt.numberpicker.NumberPicker
01-07 23:44:33.308: E/AndroidRuntime(623): at android.view.LayoutInflater.createView(LayoutInflater.java:518)
01-07 23:44:33.308: E/AndroidRuntime(623): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:570)
01-07 23:44:33.308: E/AndroidRuntime(623): at android.view.LayoutInflater.rInflate(LayoutInflater.java:623)
01-07 23:44:33.308: E/AndroidRuntime(623): at android.view.LayoutInflater.inflate(LayoutInflater.java:408)
01-07 23:44:33.308: E/AndroidRuntime(623): at android.view.LayoutInflater.inflate(LayoutInflater.java:320)
01-07 23:44:33.308: E/AndroidRuntime(623): at android.view.LayoutInflater.inflate(LayoutInflater.java:276)

我已经把这些放在我的 list 中了

        <activity
android:name="net.simonvt.numberpicker.samples.DarkThemeActivity"
android:theme="@style/SampleTheme" />
<activity
android:name="net.simonvt.numberpicker.samples.LightThemeActivity"
android:theme="@style/SampleTheme.Light" />

这是在我的 value 文件夹中的 theme.xml 中

<resources>

<style name="SampleTheme" parent="android:Theme">
<item name="numberPickerStyle">@style/NPWidget.Holo.NumberPicker</item>
</style>

<style name="SampleTheme.Light" parent="android:Theme.Light">
<item name="numberPickerStyle">@style/NPWidget.Holo.Light.NumberPicker</item>
</style>

最佳答案

想通了。我需要添加

<resources>

<style name="SampleTheme" parent="android:Theme">
<item name="numberPickerStyle">@style/NPWidget.Holo.NumberPicker</item> </style>

<style name="SampleTheme.Light" parent="android:Theme.Light">
<item name="numberPickerStyle">@style/NPWidget.Holo.Light.NumberPicker</item> </style>

到我的样式文件,而不是主题文件。

关于java - 使用 SimonVT 数字选择器并且无法膨胀 xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20987469/

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