1

我有以下清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.example.mfc"
    android:versionCode="1"
    android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-sdk
        android:minSdkVersion="9"
        android:targetSdkVersion="17" />
   <uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <application  android:label="@string/app_name">
          <activity android:name=".Home" 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>

但是在运行 lint 时,我收到警告“正确性”:“com.example.mfc.Home 未在清单中注册

问题:确保活动、服务和内容提供者在清单中注册 Id:已注册

活动、服务和内容提供者应该使用 , 和标签在 AndroidManifest.xml 文件中注册。

如果您的活动只是一个旨在被其他“真实”活动子类化的父类,请将其设为抽象类。

[http://developer.android.com/guide/topics/manifest/manifest-intro.html]'

虽然是这样,但我有 Home 类扩展 Activity:

package com.example.mfc;

import java.io.IOException;
import android.os.Bundle;
import android.app.Activity;
//import android.content.Intent;
import android.view.Menu;
import android.view.View;
//import android.view.View;
//import android.support.v7.app.ActionBar;
import static us.monoid.web.Resty.*;
import us.monoid.web.Resty;
//import us.monoid.web.Resty.*;
import android.app.AlertDialog;
import android.content.DialogInterface;
public class Home extends Activity  {

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


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.home, menu);
        return true;
    }

    public void Register(View arg0) {

        try{
             new Resty().json("http://app.zkn-web.com/register");

        /*  new AlertDialog.Builder(this)
            .setTitle("Invalid email")
            .setMessage("Invalid email address")
             .show();
            */
            //Resty r = new Resty();
            //Object name = r.json("http://app.zkn-web.com/register").get("status");

        } catch(IOException ioEx) {
            ioEx.printStackTrace(); // or what ever you want to do with it
        }

    }



}

尝试运行项目时也出现错误,“无法启动android库项目”。它与清单有关吗?

4

1 回答 1

0

尝试改变

  <activity android:name=".Home" android:label="@string/app_name">

至:

      <activity android:name="com.example.mfc.Home" android:label="@string/app_name">
于 2013-09-01T17:15:32.633 回答