Toast.makeText方法中的字符串可以使用R.string.no_update方式么?但是编译不过
Toast.makeText(context,R.string.no_update,Toast.LENGTH_LONG).show();R.string.no_updat...
Toast.makeText(context, R.string.no_update, Toast.LENGTH_LONG).show();
R.string.no_update是在strings.xml中定义的<string name="no_apk_update">已经是最新版本</string>
求解! 展开
R.string.no_update是在strings.xml中定义的<string name="no_apk_update">已经是最新版本</string>
求解! 展开
展开全部
Toast 类提供了2个静态方法来显示提示信息
1 public static Toast makeText(context, text, duration){}
2 public static Toast makeText(context, resId, duration){}
第二个参数可以是字符串,也可以是资源字符串的id
题目中定义的值和使用的名称不一致
R.string.no_update
no_apk_update
1 public static Toast makeText(context, text, duration){}
2 public static Toast makeText(context, resId, duration){}
第二个参数可以是字符串,也可以是资源字符串的id
题目中定义的值和使用的名称不一致
R.string.no_update
no_apk_update
追问
Toast.makeText(context, R.string.no_apk_update, Toast.LENGTH_LONG).show();
还是编译不过 ,提示R.string.no_apk_update没有
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询