5

我知道这里还有另一个与此相关的问题,但我认为它不适用于我,因为我很确定我使用的是 GSM(isGSM() 返回 true)。无论如何,getCdmaDbm 无论如何都会为我返回 -1。我正在使用 Android 4.1.1 和 HTC One X。这是我的代码(其中大部分不是我的):

主要活动:

package com.example.receptionlookup;

import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.telephony.PhoneStateListener;
import android.telephony.SignalStrength;
import android.telephony.TelephonyManager;
import android.view.Menu;
import android.widget.Toast;

public class MainActivity extends Activity {

    TelephonyManager        Tel;
    MyPhoneStateListener    MyListener;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        /* Update the listener, and start it */
        MyListener   = new MyPhoneStateListener();
        Tel       = ( TelephonyManager )getSystemService(Context.TELEPHONY_SERVICE);
        Tel.listen(MyListener ,PhoneStateListener.LISTEN_SIGNAL_STRENGTHS);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    /* Called when the application is minimized */
    @Override
    protected void onPause()
    {
        super.onPause();
        Tel.listen(MyListener, PhoneStateListener.LISTEN_NONE);
    }

    /* Called when the application resumes */
    @Override
    protected void onResume()
    {
        super.onResume();
        Tel.listen(MyListener,PhoneStateListener.LISTEN_SIGNAL_STRENGTHS);
    }

    /* —————————– */
    /* Start the PhoneState listener */
    /* —————————– */
    private class MyPhoneStateListener extends PhoneStateListener
    {
        /* Get the Signal strength from the provider, each tiome there is an update */
        @Override
        public void onSignalStrengthsChanged(SignalStrength signalStrength)
        {
            super.onSignalStrengthsChanged(signalStrength);
            Toast.makeText(getApplicationContext(), "Go to Firstdroid!!! GSM Cinr = "
                    + String.valueOf(signalStrength.getGsmSignalStrength()), Toast.LENGTH_SHORT).show();
        }

    };/* End of private Class */

}

安卓清单:

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.receptionlookup.MainActivity"
            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-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
</manifest>

有谁知道问题是什么?如果我去设置->关于->网络,我可以看到那里的信号强度。没有办法读取这个值吗?我已经尝试了几个第三方应用程序,但它们都无法读取我的信号强度。我也尝试过专有的 getGSMSignalBar() 方法,但我得到了 NoSuchMethodException。

4

2 回答 2

0

正如您在3GPP 127 007 8.5中所读到的,执行at+csq是可选的(假设给出信号强度的命令)。显然 HTC 对 3rd 方应用程序隐藏了这个值,他们可能有另一种方法来实现该值以在他们自己的专有设置应用程序中显示。

其他应用程序也无法获取该信息的事实证明了我的情况。

这个问题与你的问题密切相关——他说 HTC 是不值得与调制解调器相关的开发时间的 OEM 之一。

于 2013-05-17T21:04:39.450 回答
0

尝试这个:

Class signalStrengthClass = signalStrength.getClass();
            try {
                Method method = signalStrengthClass.getMethod(
                        "getGsmSignalBar", null);
                method.setAccessible(true);
                Integer bars = (Integer) method.invoke(signalStrength,
                        (Object[]) null);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
于 2013-05-18T08:53:50.903 回答