0

我写了以下代码:

package com.aamir.cool;

import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;

public class MainActivity extends Activity
{
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ImageView img = (ImageView)findViewById(R.id.facebook);
        img.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                Intent intent = new Intent();
                intent.setAction(Intent.ACTION_VIEW);
                intent.addCategory(Intent.CATEGORY_BROWSABLE);
                intent.setData(Uri.parse("http://www.facebook.com/exandrok?ref=tn_tnmn"));
                startActivity(intent);
            }
        });
    }
}

我收到错误 "Unknown Entity Intent" 、 "Unknown type of variable intent" 。如何解决这些错误?

4

4 回答 4

0

将以下行添加到您的导入语句中:

import android.content.Intent;
import android.net.Uri;
于 2012-12-07T15:24:28.400 回答
0

添加正确的导入语句

import android.content.Intent
import android.net.Uri;

如果您使用的是 Eclipse,您可以使用以下快捷方式添加/组织/优化您的导入

Cmd-shift-O在 OSX 上

Ctrl+Shift+O在 Windows / Linux 上

Rawkode 仍然出现 2 错误:“未知实体 'uri”和“未知成员 'com.aamir.cool.R.id 的主要成员”

请确保它main.xml确实存在于您的layout文件夹中。

于 2012-12-07T15:25:45.620 回答
0

导入android.content.Intent后;首先检查您的 xml 文件并确保您没有任何布局问题并删除您的 R.java 文件并让它再次生成。完成后右键单击您的项目 Android Projects -> Fix Project Properties 然后选择“项目”并单击“清除”,然后尝试再次运行代码。如果仍然无法使用 ctrl+a ctrl+x 并保存文件,请确保您没有错误并再次 ctrl+v 并尝试再次运行。

于 2012-12-07T15:39:22.247 回答
0

尝试在生成包的主页中验证 AndriodManifest.xml,如 gen/com 文件夹中所示

于 2013-09-05T04:48:04.323 回答