TAG的值是否总是android studio中包的名称,如下所示?我遇到问题,因为日志标记最多可以包含23个字符?
package com.example.swangmo.intentexample;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
public class MyService extends Service {
private static final String TAG="com.example.swangmo.intentexample";
public MyService() {
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
Log.i(TAG,"onDestroy method called");
}
}
答案 0 :(得分:0)
您可以在TAG中使用任何字符串,而不一定是包名称。但条件是您必须将其保持在24个字符以下,即最多23个字符,不超过该字符。
答案 1 :(得分:0)
TAG只是一个(静态最终)字符串,将其设置为您想要的任何内容,使您更容易解析运行时日志。