我是一个Android初学者。在尝试管理 Activity 生命周期的代码时,我遇到了新问题。

package com.example.activitylaunch;

import android.os.Build;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.ActionBar;
import android.app.Activity;
import android.view.Menu;
import android.widget.TextView;

@SuppressLint("NewApi")
public class MainActivity extends Activity {

TextView mTextView;

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

    mTextView = (TextView) findViewById(R.id.text_message);

    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB)
    {
        ActionBar actionBar = getActionBar();
        actionBar.setHomeButtonEnabled(false);
    }
    }

@Override
public void onDestroy(){
    super.onDestroy();
    android.os.Debug.stopMethodTracing();
}

@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;
}

}

我对代码了解得很好,但是在ActionBar SuppressLint中却给出了错误。当我双击它时,正在添加@SuppressLint("NewApi")。此处的@SuppressLint("NewApi")是什么意思?

最佳答案

@SuppressLint("NewApi")是Android Lint工具使用的注释。

每当代码中的某些内容不是最佳的或可能崩溃时,Lint都会告诉您。通过在此处传递NewApi,您可以取消所有警告,这些警告会告诉您是否正在使用在minSdkVersion之后引入的任何API

在以下位置查看Lint检查的完整列表-包括“NewApi”:http://tools.android.com/tips/lint-checks

关于java - 了解@SuppressLint (“NewApi”)批注,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16601601/

10-10 08:14