第一个Android测试项目无法启动

前端之家收集整理的这篇文章主要介绍了第一个Android测试项目无法启动前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建我的第一个 Android应用程序,但它根本没有启动.

在我的src> android.SampleApp我创建了一个名为Main.java的java文件

public class Main extends Activity {

// Will be connected with the buttons via XML
public void myClickHandler(View view) {
    switch (view.getId()) {
    case R.id.btn1:
        ((EditText) findViewById(R.id.txtContent)).setText("Button 1 Clicked");
        break;
    case R.id.btn2:
        ((EditText) findViewById(R.id.txtContent)).setText("Button 2 Clicked");
        break;

    }
}
}

在我的res>布局> main.xml中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView  
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="@string/hello" android:id="@+id/txtContent"/>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button One" android:id="@+id/btn1"></Button>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button Two" android:id="@+id/btn2"></Button>

我的AndroidManifest.xml内容

<?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="android.SampleApp"
  android:versionCode="1"
  android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">


</application>
<uses-sdk android:minSdkVersion="7" />

我收到此错误

> [2010-02-02 01:46:26 – SampleApp] Android发布!
> [2010-02-02 01:46:26 – SampleApp] adb正常运行.
> [2010-02-02 01:46:26 – SampleApp]未找到Launcher活动!
> [2010-02-02 01:46:26 – SampleApp]启动只会同步设备上的应用程序包!
> [2010-02-02 01:46:26 – SampleApp]执行同步

第3行和第4行以红色突出显示.

有人可以引导我朝着正确的方向前进,让应用程序在模拟器上显示吗?

带Eclipse的Android 2.1 SDK

解决方法

您在< activity>中缺少以下内容清单文件中的标记
<intent-filter . . . >
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

有关详细信息,请参阅here

原文链接:https://www.f2er.com/android/309076.html

猜你在找的Android相关文章