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 */

}

Androidマニフェスト:

<?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 はこの値をサードパーティのアプリケーションから隠しており、独自の設定アプリケーションで表示するためにその値を達成する別の方法を持っている可能性があります。

他のアプリケーションもその情報を取得できないという事実は、私の主張を正当化します。

この問題はあなたの問題と密接に関連しています - HTC は、モデム関連の開発時間に見合わない OEM の 1 つだと言いました。

于 2013-05-17T21:04:39.450 に答える