当前位置: 编程技术>移动开发
本页文章导读:
▪增添并设置APN 添加并设置APN
/**
* 向系统apn表中插入cmnet apn
*
* @param context
* @param name
* APN名称
* @param apn
* apn
* */
private static void InsertAPN(final Context context, final String name,
final St.........
▪ 开了个新博客,记录上学习中遇到的有关问题 开了个新博客,记录下学习中遇到的问题
哈,开了个新博客,记录下学习中遇到的问题~
......
▪ 刚刚写的一个搜索的小程序 刚写的一个搜索的小程序
刚写的一个搜索的小程序
只需要输入所在城市,和你所要搜搜索的内容即可得到满意的答案,明细画面可直接打电话订购。
以后还想增加几个小功能,比如查询履.........
[1]增添并设置APN
来源: 互联网 发布时间: 2014-02-18
添加并设置APN
/** * 向系统apn表中插入cmnet apn * * @param context * @param name * APN名称 * @param apn * apn * */ private static void InsertAPN(final Context context, final String name, final String apn) { int id = -1; ContentResolver resolver = context.getContentResolver(); ContentValues values = new ContentValues(); values.put("name", name); values.put("apn", apn); values.put("numeric", "46001"); values.put("proxy", ""); values.put("type", "default"); values.put("mcc", "460"); values.put("mnc", "01"); values.put("port", ""); values.put("mmsproxy", ""); values.put("mmsport", ""); values.put("user", ""); values.put("server", ""); values.put("password", ""); values.put("mmsc", ""); Cursor c = null; try { Uri newRow = resolver.insert(APN_TABLE_URI, values); if (newRow != null) { c = resolver.query(newRow, null, null, null, null); int idindex = c.getColumnIndex("_id"); c.moveToFirst(); id = c.getShort(idindex); } } catch (SQLException e) { } if (c != null) { c.close(); } SetNowAPN(context, id); } /** * 把指定的apn设置为当前的apn * * @param context * @param id * 系统数据库表中要设置为当前apn的id值 * */ private static void SetNowAPN(final Context context, final int id) { ContentResolver resolver = context.getContentResolver(); ContentValues values = new ContentValues(); values.put("apn_id", id); try { resolver.update(PREFERRED_APN_URI, values, null, null); } catch (SQLException e) { } }
[2] 开了个新博客,记录上学习中遇到的有关问题
来源: 互联网 发布时间: 2014-02-18
开了个新博客,记录下学习中遇到的问题
哈,开了个新博客,记录下学习中遇到的问题~
哈,开了个新博客,记录下学习中遇到的问题~
[3] 刚刚写的一个搜索的小程序
来源: 互联网 发布时间: 2014-02-18
刚写的一个搜索的小程序
刚写的一个搜索的小程序
只需要输入所在城市,和你所要搜搜索的内容即可得到满意的答案,明细画面可直接打电话订购。
以后还想增加几个小功能,比如查询履历保存,单独的餐厅电话本(放到系统电话本中也可以,不过怕太乱)。
最新技术文章: