使用SimonVT号选择器,不能夸大XML [英] Using SimonVT number picker and unable to inflate xml

查看:174
本文介绍了使用SimonVT号选择器,不能夸大XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我使用 SimonVT数字选择器,试图打造一批选择器,与工作姜饼。不幸的是,当我尝试将其设置为一个对话框,当它试图膨胀的XML崩溃。老实说,我花了在这一段时间,不能为我的爱搞清楚。可其他人?

So I'm using SimonVT number picker to try and create a number picker that works with gingerbread. Unfortunately when I try to set it up as a dialog, it crashes when it tries to inflate the xml. I honestly have spent a while on this and cannot for the love of me figure out. Can anyone else?

这是它崩溃了:

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

This is the xml that is having trouble being inflated

<?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)

我把这些在我的清单已

I put these in my manifest already

        <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" />

这是我theme.xml价值的文件夹

This is in my theme.xml in value folder

<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>

我的风格文件,而不是主题文件。

to my styles file, not the theme file.

这篇关于使用SimonVT号选择器,不能夸大XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆