我正在使用this blog创建自定义数字选择器。 我已将此源项目添加到Eclipse中,但是当我在模拟器中运行此项目时,我在LogCat中收到此错误。
10-14 15:31:46.074: E/AndroidRuntime(878): java.lang.RuntimeException: Unable to start
activity ComponentInfo{maximyudin.NumberPickerDemo/maximyudin.NumberPickerDemo.NumberPickerDemo}:
android.view.InflateException: Binary XML file line #5: Error inflating class com.android.internal.widget.NumberPicker
这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="maximyudin.NumberPickerDemo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:targetSdkVersion="15" android:minSdkVersion="8"></uses-sdk>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".NumberPickerDemo"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:0)
我发现了问题。在Android 2.2及更高版本中,com.android.internal.widget.NumberPicker
不支持。我尝试在Android 2.2中运行this example并导致我在提问时提到的错误。
这是main.xml文件。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.android.internal.widget.NumberPicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/numTestNumberPicker"
android:layout_centerInParent="true">
</com.android.internal.widget.NumberPicker>