gpt4 book ai didi

android - 没有在路径 dexpathlist 上找到类 scrollview

转载 作者:行者123 更新时间:2023-11-29 17:51:41 26 4
gpt4 key购买 nike

我正在 Android 上构建我的第一个应用程序。我收到错误“在路径 dexpathlist 上找不到类 scrollview”。你能帮帮我吗?

这是我的 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>

和我的 list :

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

当我启动任务时,我只收到“很遗憾,您的应用程序已停止”。查看我的 logcat 我找不到问题。

有什么建议吗?

谢谢!

最佳答案

很简单:标签错了,一定是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">

关于android - 没有在路径 dexpathlist 上找到类 scrollview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22477109/

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