0

众所周知,当我们使用 sim toolkit 中的任何菜单时,它会以 ussd 或 sms 格式向移动网络发送命令。我需要那个 sms 或 ussd 来记录并在 android 应用程序中显示给我。

我正在调用我在这样的主要活动中获得的图书馆服务

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Intent srvIntent = new Intent(this, CDUSSDService.class);
    startService(srvIntent);


}   
}

USSD 服务等级是这样的:

    public class CDUSSDService extends Service{

    private String TAG = CDUSSDService.class.getSimpleName();
    private boolean mActive = true;//false  //we will only activate this "USSD listener" when we want it


    BroadcastReceiver receiver = new BroadcastReceiver() 
    {
        @Override
        public void onReceive(Context context, Intent intent) 
        {
            if(intent.getAction().equals(Intent.ACTION_INSERT))
            {
                //activity wishes to listen to USSD returns, so activate this
                mActive = true;
                Log.d(TAG, "activate ussd listener");

                showtoast(""+"activate ussd listener");
            }
            else if(intent.getAction().equals(Intent.ACTION_DELETE))
            {
                mActive = false;
                Log.d(TAG, "deactivate ussd listener");
                showtoast(""+"DeActivate ussd listener");
            }
        }
    };

    private final IExtendedNetworkService.Stub mBinder = new IExtendedNetworkService.Stub () 
    {
        public void clearMmiString() throws RemoteException 
        {
            Log.d(TAG, "called clear");
            showtoast("called clear.");
        }

        public void setMmiString(String number) throws RemoteException 
        {
            Log.d (TAG, "setMmiString:" + number);
            showtoast("setMmiString:"+number);
        }

        public CharSequence getMmiRunningText() throws RemoteException
        {
            if(mActive == true)
            {
                return null;
            }

            return "USSD Running";
        }

        public CharSequence getUserMessage(CharSequence text)
                throws RemoteException {
            Log.d(TAG, "get user message " + text);
            showtoast("GET Usr Message:"+text);

            if(mActive == false){
                //listener is still inactive, so return whatever we got
                Log.d(TAG, "inactive " + text);
                showtoast("inactive:"+text);
                return text;
            }

            //listener is active, so broadcast data and suppress it from default behavior

            //build data to send with intent for activity, format URI as per RFC 2396
            Uri ussdDataUri = new Uri.Builder()
            .scheme(getBaseContext().getString(R.string.uri_scheme))
            .authority(getBaseContext().getString(R.string.uri_authority))
            .path(getBaseContext().getString(R.string.uri_path))
            .appendQueryParameter(getBaseContext().getString(R.string.uri_param_name), text.toString())
            .build();

            sendBroadcast(new Intent(Intent.ACTION_GET_CONTENT, ussdDataUri));

            mActive = false;
            return null;
        }
    };

    @Override
    public IBinder onBind(Intent intent) {
        Log.i(TAG, "called onbind");

        //the insert/delete intents will be fired by activity to activate/deactivate listener since service cannot be stopped
        IntentFilter filter = new IntentFilter();
        filter.addAction(Intent.ACTION_INSERT);
        filter.addAction(Intent.ACTION_DELETE);
        filter.addDataScheme(getBaseContext().getString(R.string.uri_scheme));
        filter.addDataAuthority(getBaseContext().getString(R.string.uri_authority), null);
        filter.addDataPath(getBaseContext().getString(R.string.uri_path), PatternMatcher.PATTERN_LITERAL);
        registerReceiver(receiver, filter);

        return mBinder;
    }   


    public void showtoast(String str)
    {
        Toast.makeText(getApplicationContext(), str, Toast.LENGTH_LONG).show();
    }
    }

我在 UssdLibray 结构中创建了 MainActivity,如下图所示:

在此处输入图像描述

4

1 回答 1

2

你可以在这个库的帮助下做到这一点https://github.com/alaasalman/ussdinterceptor

于 2016-02-01T06:27:47.470 回答