Reputation: 147
I have an app that make USSD calls, but after all USSD calls i got a dialog with the result to the user.
I know that is possible to dismiss this dialog because the "USSD Checker" app do this, they get the response from USSD without showing the user dialog.
In the phone utils class
Has the function displayMMIComplete
that after complete the Ussd call, show a TYPE_SYSTEM_DIALOG. In the PhoneUtils.java they use the dialog like this:
AlertDialog newDialog = new AlertDialog.Builder(context)
.setMessage(text)
.setPositiveButton(R.string.ok, null)
.setCancelable(true)
.create();
newDialog.getWindow().setType(
WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG);
newDialog.getWindow().addFlags(
WindowManager.LayoutParams.FLAG_DIM_BEHIND);
newDialog.show();
Then i can't just send some flag to dismiss it. And I can't use that import its a system class.
And when I do X consecutive calls appears X dialogs to the user close, and my app will need to do consecutive calls, there is anyway to programmatically close this System dialog?
Upvotes: 9
Views: 12299
Reputation: 2180
You can send a system level broadcast to dismiss all system dialogs
val closeDialog = Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)
sendBroadcast(closeDialog)
and add the intent filter in your Service or BroadcastReceiver class in the manifest file.
<intent-filter>
<action android:name="android.intent.action.CLOSE_SYSTEM_DIALOGS" />
</intent-filter>
Upvotes: 0
Reputation: 2741
I have found a simple answer from this blog here. First we have to create a simple Accessibility service.The Accessibility Service works only if it's enable.In setting there is a option Accessibility,in that turn on your project and give permission to your service class.
Note: Method performGlobalAction (GLOBAL_ACTION_BACK) requires Android 4.1+, if it is not used, it is possible to meet the 4.0. It closes the window immediately after the AlertDialog,
here the sample code:
public class USSDService extends AccessibilityService {
String TAG="USSDService";
@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
//In my mobile the class name has been looks like this.
if (event.getClassName().equals("com.mediatek.phone.UssdAlertActivity")) {
//Method performGlobalAction (GLOBAL_ACTION_BACK) requires Android
// 4.1+
performGlobalAction(GLOBAL_ACTION_BACK);
}
}
@Override
public void onInterrupt() {
}
@Override
protected void onServiceConnected() {
super.onServiceConnected();
Log.v(TAG, "onServiceConnected");
AccessibilityServiceInfo info = new AccessibilityServiceInfo();
info.flags = AccessibilityServiceInfo.DEFAULT;
info.packageNames = new String[]
{"com.android.phone"};
info.eventTypes = AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
info.feedbackType = AccessibilityServiceInfo.FEEDBACK_GENERIC;
setServiceInfo(info);
}
}
In Manifest add the following things:
<service
android:name=".USSDService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE" >
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
Upvotes: 2
Reputation: 1371
Just add this line in your code.
Intent intent = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
sendBroadcast(intent);
Upvotes: 5
Reputation: 147
I found an Answer to my question if you're trying to use USSD Calls you can disable the result text
In a russian blog there is a post that show how you can connect to the phoneutils service of android, then control the texts from USSD (CALL and RESULT). He show a sample using a interface (IExtentedendNetworkService ) that binds on phone utils just on the android OS start and if there was not any other app trying to do the same (Because just one service can be bound and maybe will be your or not, I don't know the rule that Android OS uses to choose).
In the function "CharSequence getUserMessage(CharSequence text);" if you return null the result dialog will not appear.
Upvotes: 6