阅读更多

一、这是一篇关于如何将自定义的 homescreen 设定为Android的默认主页,而不需要用户选择的讨论贴,原文如下:

 

 Another additional info: If you want that your homescreen is always the default and that the system doesn't ask to choose between different home screens simply put it that way: XML:

 

<

category name="android.intent.category.MONKEY">

 

The difference to the XML above is android:priority="1". It seems that the default home screen has priority 0 and therefore setting the priority of your home screen to 1 is sufficient to force the usage of your home screen.

 

二、

  Android/Ophone获取CellId以及IMEI 收藏

其实,对于Ophone跟Android来说有许许多多的不一样,比如说联网方式,还比如一些UI的细节实现等

下边的是我收集到得跟Android略有不同的获取CellId跟IMEI的代码:

TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); 
GsmCellLocation location = (GsmCellLocation) tm.getCellLocation();

int cellid = location .getCid();

String imei = tm.getDeviceId();

注:别忘加权限啊


这样就成了,呵呵

更多相关文章

  1. 【阿里云镜像】切换阿里巴巴开源镜像站镜像——Debian镜像
  2. Android获取ROOT权限
  3. Android(安卓)获取url中的参数
  4. 2010.12.26——— android 获得手机号码 和 IMEI号 等
  5. Android(安卓)经典小技巧总结
  6. Android获取当前网络状态和获取当前设备网络ip地址
  7. android TextUtils的使用
  8. 【Android】Fragment将废弃onActivityCreated
  9. Android(安卓)Instrumentation自动化测试框架

随机推荐

  1. golang如何升级?
  2. golang ide有哪些
  3. golang读取文本乱码解决方法
  4. golang http怎么使用
  5. erlang和golang的区别
  6. go语言网络编程、http处理流程详情
  7. golang gopath如何设置
  8. docker为什么用golang开发
  9. Go安装各种第三方库、包的命令
  10. golang gin可以做什么