Android:Log.w()错误:<identifier>预期

时间:2017-02-26 23:49:00

标签: java android android-studio

我正在导入日志库:

import android.util.Log;

然后尝试将其用于:

Log.w("myApp", "no network");

但我最终还是回到error: <identifier> expected

enter image description here

Studio看到Log对象,但是w为红色。

enter image description here

1 个答案:

答案 0 :(得分:2)

您正尝试从类声明块(正文)中调用方法。将Log.w("myApp", "no network");行移至任何其他方法,例如onCreate(),因为您处于活动状态:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Log.w("myApp", "no network");
}

有关详细说明,请参阅Java reference on classes