#android #android-dialer
#Android #android-дозвонщик
Вопрос:
Я хочу приложение, которое всегда должно быть запущено на телефоне. При наборе * 1234 # оно должно появиться на переднем плане, то есть быть видимым. Но когда я набираю номер, я получаю сообщение — «Проблема с подключением или неверный код MMI». Я скопировал и отредактировал код из Интернета. Есть 3 фрагмента кода и 1 прикрепленный файл манифеста. MyBroadCastReciever предназначен для переадресации экрана при наборе номера. InstallmentApp и InstallmentService гарантируют, что процесс не может быть уничтожен. MainActivity показывает, что появляется на экране. Я думал, что не проверял наличие разрешения. Так что попробовал это сделать. Но где я должен вызвать ActivityCompat.requestPermissions и где я должен указать onRequestPermissionsResult, ему нужна активность, а не широковещательный приемник. Я поместил его в MainActivity, но основное действие должно создаваться только при наличии разрешения. Итак, я не ожидаю, что оно должно выполнять эту работу. Я попытался разместить там и потерпел неудачу. Что мне делать?
код:
public class MainActivity extends AppCompatActivity {
static final int REQUEST = 112;
Context mContext = this;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode) {
case REQUEST: {
if (grantResults.length > 0 amp;amp; grantResults[0] == PackageManager.PERMISSION_GRANTED) {
//do here
Toast.makeText(mContext, "The app was allowed to read your store.", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(mContext, "The app was not allowed to read your store.", Toast.LENGTH_LONG).show();
}
}
}
}
}
public class MyBroadCastReciever extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
final int REQUEST = 112;
if (Build.VERSION.SDK_INT >= 23) {
String[] PERMISSIONS = {android.Manifest.permission.PROCESS_OUTGOING_CALLS};
if (!hasPermissions(context, PERMISSIONS)) {
ActivityCompat.requestPermissions((Activity) context, PERMISSIONS, REQUEST);
//imagePath.setText("SDK>23,has no permission");
dialer(context);
} else {
//do here
//imagePath.setText("SDK>23,has no permission");
dialer(context);
}
} else {
//do here
//imagePath.setText("SDK<23");
dialer(context);
}
}
private void dialer(Context context) {
String ourCode = "*1234#";
String dialedNumber = getResultData();
if (dialedNumber.equals(ourCode)) {
// My app will bring up, so cancel the dialer broadcast
setResultData(null);
//Intent to launch MainActivity
Intent intent_to_mainActivity = new Intent(context, MainActivity.class);
context.startActivity(intent_to_mainActivity);
}
}
private static boolean hasPermissions(Context context, String... Permissions) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M amp;amp; context != null amp;amp; permissions != null) {
for (String permission : permissions) {
if (ActivityCompat.checkSelfPermission(context, permission) != PackageManager.PERMISSION_GRANTED) {
return false;
}
}
}
return true;
}
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode) {
case REQUEST: {
if (grantResults.length > 0 amp;amp; grantResults[0] == PackageManager.PERMISSION_GRANTED) {
//do here
Toast.makeText(mContext, "The app was allowed to read your store.", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(mContext, "The app was not allowed to read your store.", Toast.LENGTH_LONG).show();
}
}
}
}
}
public class InstallmentApp extends Application {
@Override
public void onCreate() {
super.onCreate();
startService(new Intent(this, InstallmentService.class));
}
}
public class InstallmentService extends Service {
private static final int NOTIF_ID = 1;
private static final String NOTIF_CHANNEL_ID = "Channel_Id";
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@RequiresApi(api = Build.VERSION_CODES.O)
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
startForeground();
return super.onStartCommand(intent, flags, startId);
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void startForeground() {
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
String channelId = getString(R.string.app_name);
NotificationChannel notificationChannel = new NotificationChannel(channelId, channelId, NotificationManager.IMPORTANCE_DEFAULT);
notificationChannel.setDescription(channelId);
notificationChannel.setSound(null, null);
notificationManager.createNotificationChannel(notificationChannel);
Notification notification = new Notification.Builder(this, channelId)
.setContentTitle(getString(R.string.app_name))
.setContentText("Connected through SDL")
.setSmallIcon(R.drawable.ic_launcher_foreground)
.setPriority(Notification.PRIORITY_DEFAULT)
.build();
startForeground(NOTIF_ID, notification);
}
}
Файл манифеста:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myinstallments">
<application
android:allowBackup="true"
android:name=".InstallmentApp"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyInstallments">
<service android:name=".InstallmentService"/>
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".MyBroadCastReciever">
<intent-filter>
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>
</application>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
</manifest>
Ответ №1:
код:
public class MyBroadCastReciever extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
dialer(context);
}
private void dialer(Context context) {
String ourCode = "*1234#";
String dialedNumber = getResultData();
if (dialedNumber.equals(ourCode)) {
// My app will bring up, so cancel the dialer broadcast
setResultData(null);
//Intent to launch MainActivity
Intent intent_to_mainActivity = new Intent(context, MainActivity.class);
intent_to_mainActivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
context.startActivity(intent_to_mainActivity);
}
}
}
public class InstallmentApp extends Application {
@Override
public void onCreate() {
super.onCreate();
startService(new Intent(this, InstallmentService.class));
}
}
public class InstallmentService extends Service {
private static final int NOTIF_ID = 1;
private static final String NOTIF_CHANNEL_ID = "Channel_Id";
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@RequiresApi(api = Build.VERSION_CODES.O)
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
startForeground();
return super.onStartCommand(intent, flags, startId);
}
@RequiresApi(api = Build.VERSION_CODES.O)
private void startForeground() {
Intent notificationIntent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
String channelId = getString(R.string.app_name);
NotificationChannel notificationChannel = new NotificationChannel(channelId, channelId, NotificationManager.IMPORTANCE_DEFAULT);
notificationChannel.setDescription(channelId);
notificationChannel.setSound(null, null);
notificationManager.createNotificationChannel(notificationChannel);
Notification notification = new Notification.Builder(this, channelId)
.setContentTitle(getString(R.string.app_name))
.setContentText("Connected through SDL")
.setSmallIcon(R.drawable.ic_launcher_foreground)
.setPriority(Notification.PRIORITY_DEFAULT)
.build();
startForeground(NOTIF_ID, notification);
}
}
public class MainActivity extends AppCompatActivity {
static final int REQUEST = 112;
Context mContext = this;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final int REQUEST = 112;
if (Build.VERSION.SDK_INT >= 23) {
String[] PERMISSIONS = {android.Manifest.permission.PROCESS_OUTGOING_CALLS};
if (!hasPermissions(mContext, PERMISSIONS)) {
ActivityCompat.requestPermissions((Activity) mContext, PERMISSIONS, REQUEST);
//imagePath.setText("SDK>23,has no permission");
//dialer(context);
} else {
//do here
//imagePath.setText("SDK>23,has no permission");
//dialer(context);
}
} else {
//do here
//imagePath.setText("SDK<23");
//dialer(context);
}
}
private static boolean hasPermissions(Context context, String... permissions) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M amp;amp; context != null amp;amp; permissions != null) {
for (String permission : permissions) {
if (ContextCompat.checkSelfPermission(context, permission) != PackageManager.PERMISSION_GRANTED) {
return false;
}
}
}
return true;
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
switch (requestCode) {
case REQUEST: {
if (grantResults.length > 0 amp;amp; grantResults[0] == PackageManager.PERMISSION_GRANTED) {
//do here
Toast.makeText(mContext, "The app was allowed to read your store.", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(mContext, "The app was not allowed to read your store.", Toast.LENGTH_LONG).show();
}
}
}
}
}
Комментарии:
1. Это ваше решение?