0

这里的代码:

package com.example.appbsp;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;

public class MainActivity extends Activity {

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

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;

    TextView textView1 = (TextView)
             findViewById(R.id.textView1);
}

}

首先,我在 activity_main.xml 中添加了一个新的 TextView 并为其提供了 ID:@+id/textView1 然后我在 MainActivity.java 中输入了此代码以获取更多输出:

TextView textView1 = (TextView)
             findViewById(R.id.textView1);

然后我导入了 android.widget.TextView 但上面的代码变成了红色下划线,它说代码无法访问,只是“删除”作为快速修复。一个月前它工作了,现在我不再工作了。有人知道答案吗?

(目标 SDK:API 18;使用 API 19 编译)

我是新手,所以请尝试给出一个不太复杂的答案。抱歉英语不好。谢谢

4

2 回答 2

4

把返回到底部。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);


    TextView textView1 = (TextView)
             findViewById(R.id.textView1);

     return true;
}
于 2014-02-23T13:08:11.543 回答
2

因为您return true在该语句之前编写了该语句,所以为什么该行TextView textView1 = (TextView) findViewById(R.id.textView1);无法访问,因为编译器无法访问该语句。

这样做

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

并初始化onCreate类似的视图

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    TextView textView1 = (TextView) findViewById(R.id.textView1);            
    // you can set the text here any
}
于 2014-02-23T13:07:35.120 回答