web-dev-qa-db-ja.com

Android電話の状態を読む?

アプリをREAD PHONE STATEにしようとしています。電話の状態が変更されて、現在の状態でToastが表示されるようにしています。しかし、起動すると、アプリが突然停止します。

私のクラス :

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>
15
AndBegginer

みませんでした <uses-permission Android:name="Android.permission.READ_PHONE_STATE" />をマニフェストファイルで。

アプリケーションがその状態を読み取ることができる必要があります。

31
Shlublu
<?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" >

    /* permission should be added like below*/
    <uses-permission Android:name="Android.permission.READ_PHONE_STATE"/>

    <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>
3
Neel Agarwal

テレフォニーサービスによってブロードキャストされ、PHONE STATEの変更についてアプリケーションに通知するインテントにより、アプリケーションはPHONE STATEを認識します。
アプリケーションを作成するにはガイドラインが必要な場合があります

1
Emmanuel Devaux