NewActivity无法在基类中解析 - 应该/如何让基类识别它?

时间:2014-03-16 12:39:16

标签: eclipse android-intent android-activity android-manifest

在OSX上使用Eclipse:

我正试图从Intent开始我的第一个新活动。错误似乎在这里:

Intent newButton = new Intent(v.getContext(),RandomActivity.class);
startActivity(RandomActivity);

RandomActivity没有得到解决。我想我的Manifest文件中有正确的。我认为我的进口是正确的。我是否需要在我的基本活动中的某个地方声明它?这似乎不起作用。这就像代码不能识别新类的存在,但我看不出在哪里修复它。

我的其余代码:

package course.examples.UI.Button;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import course.examples.UI.Button.R;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import course.examples.UI.Button.RandomActivity;

public class ButtonActivity extends Activity {
    int count = 0; 
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

final Button button = (Button) findViewById(R.id.button);

button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {


                Intent newButton = new Intent(v.getContext(),RandomActivity.class);
                startActivity(RandomActivity);

^此行的多个标记

  • brandNewButton无法解析为类型

  • 无法将RandomActivity解析为变量

注意:brandNewButton是一个类,但我删除了它,然后去了File-> New-> Class来创建RandomActivity.java。

            }
    });
    }
}

我的XML代码如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="fill_parent">
    <Button 
        android:id="@+id/button"
        android:text="Press Me!" 
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dip"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        >
        </Button>

</RelativeLayout>

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="course.examples.UI.Button"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="false"
        android:icon="@drawable/icon"
        android:label="@string/app_name" >
        <activity
            android:name=".ButtonActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".RandomActivity">
        </activity>

    </application>

</manifest>

先谢谢大家,很高兴在这里为我们的新手提供这样的支持。

1 个答案:

答案 0 :(得分:0)

你真的不需要这样做:

button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {


                Intent newButton = new Intent(v.getContext(),RandomActivity.class);

以下是问题:您正在尝试使用不同的意图名称启动活动?

                "startActivity(RandomActivity);" // Wrong intent name

检查你的意图!

相反,只需尝试使用此功能:

button.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {

                Intent newButton = new Intent(ButtonActivity.this, RandomActivity.class);

                startActivity(newButtom);//This is right

..如果您的RandomActivity不是来自同一个软件包,请将其注册为完整路径,如:

<activity android:name="your packagename where random activity is.RandomActivity" />

希望这有帮助。