我是android的新手,我怎么知道是否按下了呼叫按钮,或者我可以使用我的拨号器替换默认拨号器活动我使用了以下代码
<receiver android:name="CallService">
<intent-filter>
<action android:name="android.intent.action.CALL_BUTTON" />
</intent-filter>
</receiver>
这是我的广播
public void onReceive(Context context, Intent intent)
{
String mAction = intent.getAction();
Log.e("Intent", mAction);
}
但它没有收到任何意图