在ant应用程序上运行lint会出现明显错误



我有以下清单:

<?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]'

虽然它是,我有类家庭扩展活动:

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
        }
    }

}

我在尝试运行项目时也遇到了一个错误,"droid库项目无法启动"。这与清单有关吗?

尝试更改

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

至:

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

相关内容

  • 没有找到相关文章

最新更新