qq_28195487 2016-04-28 07:12 采纳率: 28.6%
浏览 4220

菜鸟求帮忙!!!AS 提示Method“showMsg”is never used

import android.app.Activity;
import android.content.Intent;
import android.widget.Toast;

public class ActivityBase extends Activity{

protected void showMsg (String pMsg,int showTime) {
    Toast.makeText(this,pMsg,Toast.LENGTH_LONG).show();
}

protected void openActivity (Class<?> pClass){
    Intent _Intent = new Intent();
    _Intent.setClass(this,pClass);
    startActivity(_Intent);
}

}

  • 写回答

2条回答

  • 南窗寄傲琴书消忧 2016-04-29 01:19
    关注

    不是提示方法没有被使用么?应该只是warning吧,没关系的吧~------------------菜鸟拙见!

    评论

报告相同问题?