i found this api here to do my job but i didint know how to apply it to my application
i know there is description but how can i apply the api to onclick method to run the ussd and get the measage to string value then deside whatever i like based on the measage. can anyone help me with step by step application? i have tried like this in appcompatActivity i declared
private HashMap map=new HashMap<>();
private USSDApi ussdApi;
in oncreate method
USSDController.verifyAccesibilityAccess(this);
USSDController.verifyOverLay(this);
map.put("KEY_LOGIN",new HashSet<>(Arrays.asList("koyu","waiting","loading","tinish yitebku")));
map.put("KEY_ERROR",new HashSet<>(Arrays.asList("chigir tefetrwal","problem","error","chigir")));
ussdApi = USSDController.getInstance(this);
then in onclick method
atidabira.setOnClickListener(new View.OnClickListener() {
@RequiresApi(api = Build.VERSION_CODES.M)
@Override
public void onClick(View v) {
String suffix = Uri.encode("#");
String ussd = "*" + "804"+suffix;
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + ussd));
if (checkSelfPermission(Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) {
String[] PERMISSIONS={Manifest.permission.CALL_PHONE};
ActivityCompat.requestPermissions((Activity) mContext,PERMISSIONS,REQUEST);
}
else {
startActivity(intent);
}
ussdApi.callUSSDInvoke(ussd, map, new USSDController.CallbackInvoke() {
@Override
public void responseInvoke(String message) {
Toast.makeText(mContext, ""+message, Toast.LENGTH_SHORT).show();
}
@Override
public void over(String message) {
}
});
}
});
all you need to do is to create a ussd Response Callback that will listen to response and use it on a Telephony.sendUssdRequest that takes three parameter (code eg *101#, the callback, and a Handler) method like this: