无法在AVD中启动应用

时间:2016-06-27 04:54:17

标签: android android-studio

我是一名新的Android程序员 我创建了一个简单的" Hello World" Android工作室中的应用程序,但是当我在AVD上运行它时,它会出现以下错误:

Unexpected error while executing: am start -n "com.example.ahrims.helloworld/com.example.ahrims.helloworld.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error while Launching activity  

编辑1:
这是清单文件:

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

<application

    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".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>  

编辑2:
以下是MainActivity文件:

package com.example.ahrims.helloworld;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
}

我用Google搜索了,但没有找到任何有用的答案 任何帮助,将不胜感激。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

删除 .idea 文件夹和 gradle 文件夹,然后点击“使用gradle同步项目”gradle文件,完成此过程后,您就可以运行自己的应用< / p>