标签: android
setAction()实际做什么?
public void call(View view) { Intent call_view= new Intent(this, call.class); call_view.setAction(Task.ACTION_INCREMENT); startService(call_view); }
答案 0 :(得分:1)
它允许您设置要按意图执行的操作,例如接听/拨号电话。检查Intents