2011-08-24 109 views
12

我正在嘗試將應用程序設置爲READ PHONE STATE,並且當手機狀態更改爲顯示Toast與當前狀態。但是,當我啓動它時,應用程序意外停止。Android閱讀電話狀態?

我的課:

import android.app.Activity; 
import android.content.Context; 
import android.os.Bundle; 
import android.telephony.PhoneStateListener; 
import android.telephony.TelephonyManager; 
import android.widget.TextView; 

public class TelephonyDemo extends Activity { 
    TextView textOut; 
    TelephonyManager telephonyManager; 
    PhoneStateListener listener; 

    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     // Get the UI 
     textOut = (TextView) findViewById(R.id.textOut); 

     // Get the telephony manager 
     telephonyManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); 

     // Create a new PhoneStateListener 
     listener = new PhoneStateListener() { 
      @Override 
      public void onCallStateChanged(int state, String incomingNumber) { 
       String stateString = "N/A"; 
       switch (state) { 
       case TelephonyManager.CALL_STATE_IDLE: 
        stateString = "Idle"; 
        break; 
       case TelephonyManager.CALL_STATE_OFFHOOK: 
        stateString = "Off Hook"; 
        break; 
       case TelephonyManager.CALL_STATE_RINGING: 
        stateString = "Ringing"; 
        break; 
       } 
       textOut.append(String.format("\nonCallStateChanged: %s", 
         stateString)); 
      } 
     }; 

     // Register the listener with the telephony manager 
     telephonyManager.listen(listener, PhoneStateListener.LISTEN_CALL_STATE); 
    } 
} 

我的清單是:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.marakana" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <application 
     android:icon="@drawable/icon" 
     android:label="@string/app_name" 
     android:theme="@android:style/Theme.Light" > 
     <activity 
      android:name=".TelephonyDemo" 
      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

    <uses-sdk android:minSdkVersion="7" /> 

</manifest> 

我的佈局是:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 

    <TextView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:text="Telephony Demo" 
     android:textSize="22sp" /> 

    <TextView 
     android:id="@+id/textOut" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="Output" > 
    </TextView> 

</LinearLayout> 
+0

您將需要發佈一些代碼或更詳細地描述您正在嘗試的操作。我們不在這裏爲你寫你的項目。 – Codeman

+0

可能是SecurityException,因爲您忘記在您的AndroidManifest.xml文件中添加READ_PHONE_STATE權限 –

回答

29

我沒有看到<uses-permission android:name="android.permission.READ_PHONE_STATE" />在清單文件。

您的應用程序需要能夠讀取該狀態。

+0

偉大的答案!你能告訴我如何讓我的應用程序在後臺運行時打開電話?! – AndBegginer

+1

如果你的應用程序應該在後臺運行,你可能願意做一個服務而不是一個活動:http://developer.android.com/reference/android/app/Service.html - 我說也許因爲我不'沒有必要確定這一點的所有上下文元素。 – Shlublu

+2

要開啓使用BOOT_COMPLETED廣播接收機的手機電源,並從中啓動您的服務。 – marcinj

1

你的應用程序知道手機狀態得益於一個由電話廣播的意圖通知應用程序關於PHONE STATE更改的服務。
您可能需要指南行創建應用程序

3
<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.marakana" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <uses-permission android:name="android.permission.READ_PHONE_STATE"/> 

    <application 
     android:icon="@drawable/icon"`enter code here` 
     android:label="@string/app_name" 
     android:theme="@android:style/Theme.Light" > 
     <activity 
      android:name=".TelephonyDemo" 
      android:label="@string/app_name" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
    </application> 

    <uses-sdk android:minSdkVersion="7" /> 

</manifest> 
+5

請對此代碼添加評論... –