我已经在我的 Android 手机中配置了 VPN 连接。现在我想通过一个小部件连接这个 VPN。如何以编程方式启动连接?大多数代码假设还没有 VPN 设置,但这不是我要找的地方。我特别寻找连接到已配置 VPN 的代码。
在http://code.google.com/p/android/issues/detail?id=8915我找到了这段代码:
VpnService service = context.getSystemService(VPN_SERVICE);
VpnProfile profile = VpnProfile.create(L2TP_PROFILE);
profile.setName(myServerName);
profile.setServerName(myServerAddress);
profile.setRouteList(“192.168.1.0/255.255.255.0,192.168.10.0/255.255.255.0”);
service.connect(profile, myUserName, myPassword);
service.setNotificationIntent(myIntent);
其中配置了一个新的 VPN。我只想连接现有的 VPN。
此页面http://developer.android.com/reference/android/net/VpnService.html描述了如何实现自己的 VPN 服务,这也不是我想要的。