Hello world app Eclipse无法运行

时间:2014-07-02 04:32:05

标签: android eclipse

我最近安装了Eclipse ADT捆绑包,更新了所有的sdk工具等.Eclipse,AVD一切都运行良好。我可以导入其他样本,它在我的Android设备和AVD上运行并运行良好。

然而,我是这一切的新手,我想从http://developer.android.com/training/basics/firstapp/creating-project.html

编写的hello world app教程开始

它基本上说当你使用默认设置启动一个新的Android应用程序项目时,只选择"空白活动",默认它会构建为一个Hello World App,可以立即直接运行蝙蝠。但事实并非如此,当我试着跑去时,

[2014-07-02 14:20:20 - Jeremy]未找到Launcher活动! [2014-07-02 14:20:20 - Jeremy]发布只会同步设备上的应用程序包!

在manifest.xml文件中没有编译的启动活动,就像我在其他示例中看到的那样。我真的很想从基础开始,但我甚至无法遵循本教程,因为我无法使用默认的hello world应用程序。

清单文件原样,

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.jeremy"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
    </application>

</manifest>

并且Src文件夹中也没有文件,只是说它是活动类所在的位置?

有人可以告诉我如何运行这个基本的hello world应用程序吗?

提前感谢你, 杰里米

1 个答案:

答案 0 :(得分:1)

尝试在&#39; src&#39;下创建一个包。像&#34; com.example.jeremy&#34;并尝试创建一个名为MainActivity.java的类

public class MainActivity extends Activity {


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

    }

}

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.jeremy"
    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.jeremy.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>

您尚未在manifest.xml中声明活动标记