在我的应用程序中,我想要一个 Activity ,使用户可以在字段中添加他的SIP帐户参数。
我不希望他们去设置->通话->互联网通话设置->添加帐户->添加

我使用以下代码创建了具有 Activity 的帐户:

SipManager mSipManager = null;

    if(mSipManager == null) {
        mSipManager = SipManager.newInstance(this);
    }

    android.provider.Settings.System.putInt(context.getContentResolver(), android.provider.Settings.System.s , 0)
    SipProfile mSipProfile = null;
    SipManager manager = SipManager.newInstance(getBaseContext());

    SipProfile.Builder builder;
    try {
        builder = new SipProfile.Builder("XXXXX", "sip.linphone.org");
        builder.setPassword("XXX");
        mSipProfile = builder.build();
        manager.open(mSipProfile);
        //manager.register(mSipProfile, 30, MyActivity.this);
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

但是该帐户已绑定(bind)到该应用程序,并且当我删除应用程序时,它会删除该帐户。我希望它独立于应用程序。

最佳答案

为什么不启动系统sip设置 Activity ,它们不必浏览系统,但可以将帐户添加到系统中。

if (SipManager.isVoipSupported(this) && SipManager.isApiSupported(this)){
   // SIP is supported, let's go!
   Intent intent = new Intent();
   intent.setAction("android.intent.action.MAIN");
   intent.setComponent(ComponentName.unflattenFromString("com.android.phone/.sip.SipSettings"));
   startActivity(intent); }

09-19 08:15