首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

android开发中,出现“unfortunately,项目has stopped”解决办法

2013-08-27 
android开发中,出现“unfortunately,项目has stopped”LogCat 中的信息如下所示,网上有人说要保证androidman

android开发中,出现“unfortunately,项目has stopped”
LogCat 中的信息如下所示
android开发中,出现“unfortunately,项目has stopped”解决办法,网上有人说要保证androidmanifest.xml配置正确,可这个一般不是自动生成的嘛,

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

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.lhx.MainActivity"
            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>

</manifest>
新手,刚开始学android开发,还望各位大侠给指点一二。在这里不胜感激。 Android开发 项目has?stopped eclipse
[解决办法]
不是提示你了,空指针吗?看看哪一行。

热点排行