我最近开始创建Android应用程序的学习过程,我正在使用IntelliJ IDEA 13.1.1,我正在按照tutorial添加操作栏按钮,我收到错误cannot resolve symbol navutils
。我在网上搜索过并发现了几个stackoverflow帖子(1和2),在这些帖子中,他们似乎在谈论通过build.gradle
修复问题,我不知道它是什么似乎无法在任何地方找到这个文件。
这是我的DisplayMessageActivity.java
代码,到目前为止,该应用程序似乎工作正常,我能够发布文本并看到它,但这个操作栏按钮让我发疯。
package com.example.My_First_App;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;
import android.view.MenuItem;
import android.widget.TextView;
public class DisplayMessageActivity extends Activity {
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
// Get the message from the intent
Intent intent = getIntent();
String received_message = intent.getStringExtra(MyActivity.SOME_MESSAGE);
// Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(received_message);
// Set the text view as the activity layout
setContentView(textView);
// Make sure we're running on Honeycomb or higher to use ActionBar APIs
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
// Show the Up button in the action bar.
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
}
我真的很感激这方面的任何帮助,因为我陷入困境,不能继续学习本教程。
答案 0 :(得分:3)
我认为你错过了
import android.support.v4.app.NavUtils;
答案 1 :(得分:1)
我没有看到您在任何地方导入NavUtils
。
将import android.support.v4.app.NavUtils;
添加到您的导入中。