3
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;



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

        Button tut1 = (Button) findViewById(R.id.tutorial1);
        tut1.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

            startActivity(new Intent("android.intent.action.TUTORIALONE"));

            }
        });

    }
}

遵循了 youtube 教程,但我在此行中遇到错误:

setContentView(R.layout.main);

“按钮无法解析为类型”

我是android dev的新手,所以我很困惑。帮助!

4

6 回答 6

1

将光标移动到代码中的“按钮”并选择“导入按钮(android.widget)”..

于 2014-03-06T15:04:52.527 回答
0

您的 main.xml 布局中是否定义了一个 Button?就像是:

<Button android:text="Click me" android:id="@+id/tutorial1"
    android:layout_width="wrap_content" android:layout_height="wrap_content"/>
于 2012-04-11T13:56:05.523 回答
0

您是否在根布局中添加了以下内容:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" />
于 2012-04-11T14:04:51.793 回答
0

在你的 xml 中使用它:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/tutorial1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" >
    </Button>

</LinearLayout>
于 2012-04-11T14:10:38.377 回答
0

请尝试以下步骤: 1. 删除 import android.R(可能是不小心导入了) 2. 清理项目 3. 重新构建项目

于 2014-10-08T20:22:33.617 回答
-1

将光标移动到代码中的“按钮”并按ALT + Enter

我加粗你必须按alt + enter

Button tut1 = **(Button)** findViewById(R.id.tutorial1);
于 2019-03-14T18:01:42.103 回答