gpt4 book ai didi

android - 使用来电启动应用程序

转载 作者:行者123 更新时间:2023-11-30 04:03:35 26 4
gpt4 key购买 nike

我想在有来电时启动应用程序。1)每当有来电时,用户都会弹出一个窗口,询问用户您要调用哪个应用程序 i)默认电话应用程序或 ii)我的应用程序我正在使用以下代码

public class Record extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
Bundle bundle=arg1.getExtras();
String state=bundle.getString(TelephonyManager.EXTRA_STATE);

if(state.equalsIgnoreCase(TelephonyManager.EXTRA_STATE_RINGING))
{
Intent i=new Intent(arg0,TempDemoActivity.class);
arg0.startActivity(i);
}
}
}

list

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="temp.demo"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="7" />

<uses-permission android:name="android.permission.READ_PHONE_STATE" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >

<activity
android:name=".TempDemoActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<receiver android:name=".Record" >
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>

</manifest>

最佳答案

Intent intent = new Intent(context, DisplayScreen.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);

试试这个

关于android - 使用来电启动应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12097221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com