編輯:關於Android編程
復制代碼 代碼如下:
[java]
public String getProvidersName()
{
String str = "N/A";
try
{
this.IMSI = this.telephonyManager.getSubscriberId();
System.out.println(this.IMSI);
if (this.IMSI.startsWith("46000"))
str = "中國移動"; break;
if (this.IMSI.startsWith("46002"))
str = "中國移動"; break ;
if (this.IMSI.startsWith("46001"))
str = "中國聯通";
else if (this.IMSI.startsWith("46003"))
str = "中國電信";
}
catch (Exception localException)
{
localException.printStackTrace();
}
return str;
}
注意申明:
[java]
復制代碼 代碼如下:
this.telephonyManager = ((TelephonyManager)paramContext.getSystemService("phone"));
就這麼簡單。。。。
1、先推薦一個輕量級緩存框架——ACache(ASimpleCache)ACache介紹:ACache類似於SharedPrefere
在android開發中ListView是比較常用的組件,它以列表的形式展示具體內容,並且能夠根據數據的長度自適應顯示。列表的顯示需要三個元素:1.ListVeiw 用來展
一、問題:在Android啟動後會在新進程裡創建一個主線程,也叫UI線程(非線程安全)這個線程主要負責監聽屏幕點擊事件與界面繪制。當Application需要進行耗時操作
本篇我們准備為地圖添加:添加覆蓋物Marker與InfoWindow的使用新增本文參考的是http://blog.csdn.net/lmj623565791/articl