隐藏的构造函数每个进程调用多次

时间:2013-06-07 07:19:39

标签: android

我的logcat

中出现此错误
TelephonyManager : Hidden constructor called more than once per process!

我的PhoneListener无效

@Override
public void onCallStateChanged(int state, String incomingNumber) {

                        switch (state) {
                        case TelephonyManager.CALL_STATE_IDLE:
                            Log.e("state", "idle");
                            break;
                        case TelephonyManager.DATA_CONNECTED:
                            Log.e("state", "connected");
                            break;
                        }
                    };
                };

    telManager = (TelephonyManager) context
            .getSystemService(Context.TELEPHONY_SERVICE);
    telManager.listen(callListener, PhoneStateListener.LISTEN_CALL_STATE);

它不会打印出我的日志。

1 个答案:

答案 0 :(得分:0)

从源代码我得到了这个:

/ **提供对设备上电话服务信息的访问。应用程序可以使用此类中的方法来确定电话服务和状态,以及访问某些类型的订户信息。应用程序还可以注册侦听器以接收电话状态更改的通知。

您不直接实例化此类;相反,您通过{@link android.content.Context#getSystemService Context.getSystemService(Context.TELEPHONY_SERVICE)}检索对实例的引用。 *

请注意,对某些电话信息的访问受权限保护。您的应用程序无法访问受保护的*信息,除非它在其清单文件中声明了相应的权限。如果权限适用,则会在您访问受保护信息的方法中注明这些权限。 ** /

public class TelephonyManager {

private static final String TAG = "TelephonyManager";

private static Context sContext;
private static ITelephonyRegistry sRegistry;

/** @hide */
public TelephonyManager(Context context) {
    context = context.getApplicationContext();
    if (sContext == null) {
        sContext = context;

        sRegistry = ITelephonyRegistry.Stub.asInterface(ServiceManager.getService(
                "telephony.registry"));
    } else if (sContext != context) {
        Log.e(TAG, "Hidden constructor called more than once per process!");
        Log.e(TAG, "Original: " + sContext.getPackageName() + ", new: " +
                context.getPackageName());
    }
}

您是否从不同的上下文创建了多个TelephonyManger实例?如果是,那么错误日志将显示为上下文是静态的。