0

この問題を抱えている他のすべての投稿を調べましたが、役に立ちませんでした。

すべてのコードが MainActivity 内に格納されている場合に完全に機能するアプリを作成しましたが、GPS をチェックするクラスを作成し、MainActivity ソース ファイルをクリーンアップすると、デバッグ時に「ソースが正しくない」というエラーが表示されます。見つかった"。

私はAndroidとJavaが初めてなので(通常はcとc ++で作業します)、これが私のmanifest.xmlなどと関係があるかどうかはわかりませんが、それは私を夢中にさせています!

manifest.xml ファイルと一緒に以下のコードを含めました。

コードを1行ずつ調べると、このエラーが発生する行は次のとおりですfinal LocationManager manager = (LocationManager) getSystemService(LOCATION_SERVICE);

GpsCheck.java

package com.omegaapp.openomega;

import android.os.*;
import android.location.*;
import android.location.GpsStatus.Listener;
import android.app.*;
import android.content.*;
import com.omegaapp.*;



public class GpsCheck extends android.app.Activity{

    public GpsCheck(){
        final LocationManager manager =  (LocationManager) getSystemService(LOCATION_SERVICE);
        Listener gpsStatusListener = new Listener(){
            @Override
            public void onGpsStatusChanged(int arg0) {
                gpsEnable();

            }
        };
        manager.addGpsStatusListener(gpsStatusListener);
    }

    public boolean gpsEnable(){
        //checks weather the GPS is enabled. If not, prompts the user to enable it then checks again. Returns false if the user chooses not to enable the application.
        if(!checkGpsEnabled()){
            promptEnableGps();
        }
        return true;
    }

    private boolean checkGpsEnabled(){
        final LocationManager manager =  (LocationManager) getSystemService(LOCATION_SERVICE);
        if ( !manager.isProviderEnabled( LocationManager.GPS_PROVIDER ) ) {
            return false;
        }
        return true;
    }

    private boolean promptNoGpsQuit(){
        AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
        alertDialogBuilder.setMessage("Without enabling GPS this app can not function, Would you like to quit?");
        alertDialogBuilder.setCancelable(false);
        DialogInterface.OnClickListener onClick = new DialogInterface.OnClickListener(){
            public void onClick(DialogInterface dialog, int id){
                Intent callGPSSettingIntent = new Intent(
                android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                startActivity(callGPSSettingIntent);
            }
        };
        alertDialogBuilder.setPositiveButton("Goto Settings Page To Enable GPS", onClick);

        DialogInterface.OnClickListener onClickCancel = new DialogInterface.OnClickListener(){
            public void onClick(DialogInterface dialog, int id){
                dialog.cancel();
                finish();
            }
        };
        alertDialogBuilder.setNegativeButton("Quit", onClickCancel);
        AlertDialog alert = alertDialogBuilder.create();
        alert.show();
        return true;
    }

    private boolean promptEnableGps(){
        AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
        alertDialogBuilder.setMessage("GPS is disabled in your device. Would you like to enable it?");
        alertDialogBuilder.setCancelable(false);
        DialogInterface.OnClickListener onClick = new DialogInterface.OnClickListener(){
            public void onClick(DialogInterface dialog, int id){
                Intent callGPSSettingIntent = new Intent(
                android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                startActivity(callGPSSettingIntent);
            }
        };
        alertDialogBuilder.setPositiveButton("Goto Settings Page To Enable GPS", onClick);

        DialogInterface.OnClickListener onClickCancel = new DialogInterface.OnClickListener(){
            public void onClick(DialogInterface dialog, int id){
                dialog.cancel();
                promptNoGpsQuit();
            }
        };
        alertDialogBuilder.setNegativeButton("Cancel", onClickCancel);
        AlertDialog alert = alertDialogBuilder.create();
        alert.show();
        return true;
    }

}

マニフェスト.xml

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

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.omegaapp.openomega.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>
    <receiver android:enabled="true" android:name=".BootUpReceiver"
        android:permission="android.permission.RECEIVE_BOOT_COMPLETED">

        <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
                <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>
</application>

ありがとうございました!

4

2 に答える 2

2

ここ

public class GpsCheck extends android.app.Activity{

    public GpsCheck(){

  }
      your code  .....
}

これは、 Activity の Context を取得するために非 Activity クラスを作成する正しい方法ではありません。システムサービスまたは他のアクティビティまたはアプリケーションコンポーネントにアクセスするには、アクティビティコンテキストを非アクティビティクラスに渡す必要があります

Context を GpsCheck コンストラクターに次のように渡すことで、GpsCheck を機能させるように変更します。

public class GpsCheck{
   Context context;
    LocationManager manager;

    public GpsCheck(Context context){
     this.context=context;

     this.manager =  (LocationManager)context.getSystemService(LOCATION_SERVICE);
     //your code here
    }
      your code  .....
}

あなたのアクティビティから現在のアクティビティコンテキストを次のように送信します。

GpsCheck gpscheckobj=new GpsCheck(MainActivity.this);
于 2012-12-20T20:12:41.577 に答える