我有一个Android应用程序,可以播放来自应用程序类的音频。我的应用程序类中有一个PhoneStateListener,可以在有电话时暂停音频。
我想在通话结束时开始一项特定的活动,但我无法做到。这是我的代码:
public void getPhoneState(){
TelephonyManager mgr = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
PhoneStateListener phoneStateListener = new PhoneStateListener() {
@Override
public void onCallStateChanged(int state, String incomingNumber) {
if (state == TelephonyManager.CALL_STATE_RINGING) {
if(audio.isPlaying())
audioPlayer.pause();
}
else if(state == TelephonyManager.CALL_STATE_IDLE) {
audio.start();
Intent missintent= new Intent(context,AudioActivity.class);
missintent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(missintent);
}
else if(state == TelephonyManager.CALL_STATE_OFFHOOK) {
if(audio.isPlaying())
audioPlayer.pause();
}
super.onCallStateChanged(state, incomingNumber);
}
};
if(mgr != null) {
mgr.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
}
}
public boolean handleAudio(String source, int id) {
phoneState();
//Code for Playing Audio
.....
.....
}
如果有人能告诉我如何以正确的方式开始活动,我将不胜感激。
谢谢!
答案 0 :(得分:19)
好的,所以我知道你已经找到了另一种解决方案,但我正在解决这个问题并发现了一些对我有用的东西。我没有调用一个意图,而是使用了pendingIntent,一个意图过滤器和待定帖子。以下是其他任何有此问题的代码snippit。
Context context = MyApplication.this.getApplicationContext();
Intent errorActivity = new Intent("com.error.activity");//this has to match your intent filter
errorActivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 22, errorActivity, 0);
try {
pendingIntent.send();
}
catch (CanceledException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
然后在您的清单中,确保为捕获活动设置了意图过滤器
<activity
android:name="UncaughtErrorDialogActivity"
android:theme="@android:style/Theme.Dialog" >
<intent-filter>
<action android:name="com.error.activity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>