Android教程“无法解析符号'setText'”

时间:2017-12-19 14:00:58

标签: android

我正在尝试完成此处的教程:https://developer.android.com/training/basics/firstapp/building-ui.html

尝试构建应用时出现上述错误。我试图找到一个答案,并试图检查我自己的代码,但无济于事。

以下是我的代码:

    package com.example.chris.helloworld;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class DisplayMessageActivity extends AppCompatActivity {

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

Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

TextView textView = findViewById(R.id.textView);
textView.setText(message);
}

和xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.chris.helloworld.DisplayMessageActivity">

<TextView
    android:id="@+id/textView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:text="TextView"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

任何帮助都将不胜感激。

3 个答案:

答案 0 :(得分:2)

你必须放置这些行:

Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

TextView textView = findViewById(R.id.textView);
textView.setText(message);

内部 onCreate(或其他一些方法)。您不能在Java中放置类似外部方法的代码。我说onCreate是因为你加载了视图。应该从onCreate以某种方式或其他方式调用,但是从onCreate调用的外部方法也会这样做

所以你的代码是:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_display_message);
    Intent intent = getIntent();
    String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

    TextView textView = findViewById(R.id.textView);
    textView.setText(message);
}

这适用于所有事情。或多或少只能在方法之外做的事情是声明变量。设置这些变量,更改它们(在textview的情况下通过像setText这样的方法)必须在方法内完成。

答案 1 :(得分:1)

试试这个

public class DisplayMessageActivity extends AppCompatActivity {

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

   Intent intent = getIntent();
   String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

   TextView textView = findViewById(R.id.textView);
   textView.setText(message);
}

}

答案 2 :(得分:1)

你为什么不在onCreate方法中有这个?

Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

TextView textView = findViewById(R.id.textView);
textView.setText(message);

你必须把它放在onCreate或其他方法上。