无法从我的应用程序连接到IMS apn

时间:2014-03-05 10:24:14

标签: java android network-programming android-4.4-kitkat apn

我需要从我的应用程序连接到IMS apn。当我尝试连接到IMS apn时,它在我的手机上连接和断开连接,即使在kitkat上使用彩信也是如此。有人可以帮我解决这个问题。这是代码来自mycreate中的片段

private string REQUIRED_FEATURE = "enableIMS"; # also tried with "enableMMS"

ConnectionManager mConMgr = ((ConnectivityManager)getActivity()).getSystemSerivce(Context.CONNECTIVITY_SERVICE);
int result =.stopUsingNetworkFeature(ConnectivityManager.TYPE_MOBILE, REQUIRED_FEATURE);                     

Log.d(TAG, "we got connected result id  as  : " + result);

NetworkInfo ntInfo = mConMgr.getActiveNetworkInfo();

if (ntInfo != null)
    Log.d(TAG, "we now network what we requested :: " + ntInfo.getExtraInfo()
                + " ::  network connection");

断开与此apn的连接后,它会跳回默认的apn。从连接开始到希望默认发生在一分钟内。

查看我的日志,我发现这些状态:连接,断开连接,原因已连接,linkpropertieschanged,datadisabled。基本上尝试连接到ims apn并需要发送数据

1 个答案:

答案 0 :(得分:0)

如果连接断开。每50秒使用startUsingNetworkFeature启用IMS,因此IMS始终处于启动状态,最后可以发送数据。