在Android / MainActivity中显示来电

问题描述 投票:-1回答:1

我是Android新手(3个月大)。我想读取来电并通过MainActivity显示它。我已经扩展了PhoneStateListener并且能够检测传入的呼叫/号码。现在我的问题是如何在前端显示这个数字。请帮忙。非常感谢。

android telephonymanager
1个回答
0
投票

你可以使用广播接收器来显示来电或去电: - 创建一个CallReceiver类: -

public class CallReceiver扩展BroadcastReceiver {

private static int lastState = TelephonyManager.CALL_STATE_IDLE;
private static Date callStartTime;
private static boolean isIncoming;
private static String savedNumber

@Override
public void onReceive(Context context, Intent intent) {
    if (intent.getAction().equals("android.intent.action.NEW_OUTGOING_CALL")) {
        savedNumber = intent.getExtras().getString("android.intent.extra.PHONE_NUMBER");
    } else {
        String stateStr = intent.getExtras().getString(TelephonyManager.EXTRA_STATE);
        String number = intent.getExtras().getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
        int state = 0;
        if (stateStr.equals(TelephonyManager.EXTRA_STATE_IDLE)) {
            state = TelephonyManager.CALL_STATE_IDLE;
        } else if (stateStr.equals(TelephonyManager.EXTRA_STATE_OFFHOOK)) {
            state = TelephonyManager.CALL_STATE_OFFHOOK;
        } else if (stateStr.equals(TelephonyManager.EXTRA_STATE_RINGING)) {
            state = TelephonyManager.CALL_STATE_RINGING;
        }
        onCallStateChanged(context, state, number, intent);
    }
}

public void onCallStateChanged(Context context, int state, String number, Intent intent) {
    if (lastState == state) {
        //No change, debounce extras
        return;
    }
    switch (state) {
        case TelephonyManager.CALL_STATE_RINGING:
            isIncoming = true;
            callStartTime = new Date();
            onIncomingCallStarted(context, number, callStartTime, intent);
            break;
        case TelephonyManager.CALL_STATE_OFFHOOK:
            //Transition of ringing->offhook are pickups of incoming calls.  Nothing done on them
            if (lastState != TelephonyManager.CALL_STATE_RINGING) {
                isIncoming = false;
                callStartTime = new Date();
                onOutgoingCallStarted(context, number, callStartTime, intent);
            }
            break;
        case TelephonyManager.CALL_STATE_IDLE:
            //Went to idle-  this is the end of a call.  What type depends on previous state(s)
            if (lastState == TelephonyManager.CALL_STATE_RINGING) {
                //Ring but no pickup-  a miss
                onMissedCall(context, number, callStartTime, intent);
            } else if (isIncoming) {
                onIncomingCallEnded(context, number, callStartTime, new Date(), intent);
            } else {
                onOutgoingCallEnded(context, number, callStartTime, new Date(), intent);
            }
            break;
    }
    lastState = state;
    Intent intent1 = new Intent("CallApp");
    context.sendBroadcast(intent1);
}

protected void onIncomingCallStarted(Context ctx, String number, Date start, Intent intent) {
    Toast.makeText(ctx, "calling from " + number, Toast.LENGTH_SHORT).show();
}

protected void onOutgoingCallStarted(Context ctx, String number, Date start, Intent intent) {
    Toast.makeText(ctx, "calling to " + number, Toast.LENGTH_SHORT).show();
}

protected void onIncomingCallEnded(Context ctx, String number, Date start, Date end, Intent intent) {
    Toast.makeText(ctx, "calling from " + number + " ended ", Toast.LENGTH_SHORT).show();

}

protected void onOutgoingCallEnded(Context ctx, String number, Date start, Date end, Intent intent) {
    Toast.makeText(ctx, "calling to " + number + " ended ", Toast.LENGTH_SHORT).show();

}

protected void onMissedCall(Context ctx, String number, Date start, Intent intent) {
    Toast.makeText(ctx, "missed call from " + number + " sim ", Toast.LENGTH_SHORT).show();

}

}

或在清单中注册您的应用程序: -

<receiver android:name=".broadcaestReceiver.CallReceiver">
            <intent-filter>
                <action android:name="android.intent.action.PHONE_STATE" />
            </intent-filter>
        </receiver>
© www.soinside.com 2019 - 2024. All rights reserved.