編輯:高級開發
TelephonyManager phoneMgr=(TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
txtPhoneNumber.setText(phoneMgr.getLine1Number()); //txtPhoneNumber是一個EditText 用於顯示手機號
注:根據android的安全機制,在使用TelephonyManager時,必須在androidManifest.XML中添加<uses-permission android:name="READ_PHONE_STATE" /> 否則無法獲得系統的許可。
手機型號 Build.MODEL
> String MODEL The end-user-visible name for the end product.
sdk版本 Build.VERSION.SDK
String
SDK
This constant is deprecated. Use SDK_INT
to easily get this as an integer.
及frimware版本號(系統版本號) Build.VERSION.RELEASE
oid.com/reference/android/os/Build.VERSION.Html#RELEASE">RELEASEThe user-visible version string.
private void loadPhoneStatus()
{
TelephonyManager phoneMgr=(TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
txtPhoneModel.setText(Build.MODEL); //手機型號
txtPhoneNumber.setText(phoneMgr.getLine1Number());<
當我們創建一個帶EditText 或 AutoCompleteTextVIEw的視圖時,在加載視圖時總是會把輸入的焦點自動移動到第一個輸入框。如下圖所示:
Google正式推出了android 2.0系統的SDK(軟件開發套件,開發人員調試系統所用),這將使現在日漸風靡的GPhone變得越來越好用,這也大大的方便了用戶的使
過去的2010年是android全面爆發的一年,出眾的擴展性使其成為了眾多玩家的購機首選,市場占有率節節攀高。本文與大家分享七個非常有用的android開發工具和工具包
Dalvik虛擬機依賴於Linux的一些功能,比如線程機制和底層內存管理機制, Linux 內核也同時作為硬件和軟件堆棧之間的硬件抽象層,下面詳細說明下什麼是andro