没有在路径dexpathlist上找到类scrollview

时间:2014-03-18 10:50:35

标签: android

我在android上构建我的第一个应用程序。我收到错误"在路径dexpathlist"上找不到类滚动视图。你能救我吗?

这是我的main.xml:

    <scrollview xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <linearlayout
        android:id="@+id/widget1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <textview
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="hello" >

            <com.example.horizontal_spinner
                android:id="@+id/spiner"
                android:layout_width="fill_parent"
                android:layout_height="80dp" >

                <textview
                    android:id="@+id/textView1"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="---" >
                </textview>
            </com.example.horizontal_spinner>
        </textview>
    </linearlayout>

</scrollview>

和我的清单:

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.horizontalspinner"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.horizontalspinner.HorizontalSpinnerActivity"
            android:label="Spinner" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

当我启动任务时,我只得到一个&#34;不幸的是你的应用程序已停止。&#34;看我的logcat,我找不到问题。

有什么建议吗?

谢谢!

1 个答案:

答案 0 :(得分:3)

简单:标记错误,必须为ScrollView而不是scrollview

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/scrollView"
        android:layout_gravity="center_horizontal"
        tools:context=".DetailActivity$PlaceholderFragment">