編輯:關於Android編程
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;
}
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"));
this.telephonyManager = ((TelephonyManager)paramContext.getSystemService("phone"));
就這麼簡單。。。。
華為、榮耀很多款機型都配備了指紋識別模塊,長期用指紋來解鎖,恐怕鎖屏密碼都忘記了吧?那麼要怎麼才能不用雙清、不用還原系統,不丟失任何數據的情況下修改鎖屏密碼
今天無意中再安卓巴士上看到了一片文章《Android開發者應該使用FlatBuffers替代JSON》,嚇得我趕緊看了看,突然感覺自己用了好長時間的JSON解析似乎落伍了
一、閒話: Android原生的進度條可以根據不同的主題有不同的視覺效果,但任何一種主題下的進度條和應用程序的視覺配合起來都顯得格格不入,所以多數時候我們需要自定義Pro
本文將介紹如何獲取設備中已經安裝的應用信息,包括:應用名稱、包名、圖標等。獲得信息列表後,選擇某一項記錄還可以啟動對應的應用! 1.代碼實現 pack