我正在关注 android 基本教程,并且大部分时间都被困在这个教程上。我用“//”突出显示了错误行。我已经尝试了各种导入行.. 以前的搜索似乎说这是一个导入定义类型错误。
package com.example.myapp3;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.app.NavUtils;
import android.view.MenuItem;
public class DisplayMessageActivity extends Activity {
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.activity_display_message);
setContentView(R.layout.activity_display_message);
// 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.`enter code here`
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}