java - Android 如何在 Fragmentclass 中使用 javaclass.this

标签 java android gps

我正在尝试在我的 Android 应用程序中使用 GPS 系统。我正在关注这个 tutorial .

当我试图调用我的 javaclass.this 时,我在上下文中遇到错误如何做。

这是我的java类

import android.support.v4.app.Fragment;
import com.lifesymb.lifesymb.R;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.RelativeLayout;
import android.widget.Toast;

    public class gps extends Fragment {


         Button btnShowLocation;

            // GPSTracker class
            GPSTracker gps;
            public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {

                if (container == null) {

                    return null;
                }

                RelativeLayout mRelativeLayout = (RelativeLayout) inflater.inflate(R.layout.gps,
                                container, false);



                // note that we're looking for a button with id="@+id/myButton" in your inflated layout
                // Naturally, this can be any View; it doesn't have to be a button


                      // note that we're looking for a button with id="@+id/myButton" in your inflated layout
                    // Naturally, this can be any View; it doesn't have to be a button
                btnShowLocation = (Button) mRelativeLayout.findViewById(R.id.gps1);
             // show location button click event
                btnShowLocation.setOnClickListener(new View.OnClickListener() {

                    @Override
                    public void onClick(View arg0) {        
                        // create class object
                        gps = new GPSTracker(gps.this);

                        // check if GPS enabled     
                        if(gps.canGetLocation()){

                            double latitude = gps.getLatitude();
                            double longitude = gps.getLongitude();

                            // \n is for new line
                            Toast.makeText(getActivity(), "Your Location is - \nLat: " + latitude + "\nLong: " + longitude, Toast.LENGTH_LONG).show();    
                        }else{
                            // can't get location
                            // GPS or Network is not enabled
                            // Ask user to enable GPS/network in settings
                            gps.showSettingsAlert();
                        }

                    }
                }); 

我在以下几行有错误

gps = new GPSTracker(gps.this) ( The constructor GPSTracker(gps) is undefined)

这是我的 GPSTracker.java 文件

import android.app.AlertDialog;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.provider.Settings;
import android.util.Log;

public class GPSTracker extends Service implements LocationListener {

    private final Context mContext;

    // flag for GPS status
    boolean isGPSEnabled = false;

    // flag for network status
    boolean isNetworkEnabled = false;

    // flag for GPS status
    boolean canGetLocation = false;

    Location location; // location
    double latitude; // latitude
    double longitude; // longitude

    // The minimum distance to change Updates in meters
    private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters

    // The minimum time between updates in milliseconds
    private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute

    // Declaring a Location Manager
    protected LocationManager locationManager;

    public GPSTracker(Context context) {
        this.mContext = context;
        getLocation();
    }

    public Location getLocation() {
        try {
            locationManager = (LocationManager) mContext
                    .getSystemService(LOCATION_SERVICE);

            // getting GPS status
            isGPSEnabled = locationManager
                    .isProviderEnabled(LocationManager.GPS_PROVIDER);

            // getting network status
            isNetworkEnabled = locationManager
                    .isProviderEnabled(LocationManager.NETWORK_PROVIDER);

            if (!isGPSEnabled && !isNetworkEnabled) {
                // no network provider is enabled
            } else {
                this.canGetLocation = true;
                // First get location from Network Provider
                if (isNetworkEnabled) {
                    locationManager.requestLocationUpdates(
                            LocationManager.NETWORK_PROVIDER,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                    Log.d("Network", "Network");
                    if (locationManager != null) {
                        location = locationManager
                                .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                        if (location != null) {
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();
                        }
                    }
                }
                // if GPS Enabled get lat/long using GPS Services
                if (isGPSEnabled) {
                    if (location == null) {
                        locationManager.requestLocationUpdates(
                                LocationManager.GPS_PROVIDER,
                                MIN_TIME_BW_UPDATES,
                                MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
                        Log.d("GPS Enabled", "GPS Enabled");
                        if (locationManager != null) {
                            location = locationManager
                                    .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                            if (location != null) {
                                latitude = location.getLatitude();
                                longitude = location.getLongitude();
                            }
                        }
                    }
                }
            }

        } catch (Exception e) {
            e.printStackTrace();
        }

        return location;
    }

    /**
     * Stop using GPS listener
     * Calling this function will stop using GPS in your app
     * */
    public void stopUsingGPS(){
        if(locationManager != null){
            locationManager.removeUpdates(GPSTracker.this);
        }       
    }

    /**
     * Function to get latitude
     * */
    public double getLatitude(){
        if(location != null){
            latitude = location.getLatitude();
        }

        // return latitude
        return latitude;
    }

    /**
     * Function to get longitude
     * */
    public double getLongitude(){
        if(location != null){
            longitude = location.getLongitude();
        }

        // return longitude
        return longitude;
    }

    /**
     * Function to check GPS/wifi enabled
     * @return boolean
     * */
    public boolean canGetLocation() {
        return this.canGetLocation;
    }

    /**
     * Function to show settings alert dialog
     * On pressing Settings button will lauch Settings Options
     * */
    public void showSettingsAlert(){
        AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);

        // Setting Dialog Title
        alertDialog.setTitle("GPS is settings");

        // Setting Dialog Message
        alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?");

        // On pressing Settings button
        alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog,int which) {
                Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                mContext.startActivity(intent);
            }
        });

        // on pressing cancel button
        alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
            dialog.cancel();
            }
        });

        // Showing Alert Message
        alertDialog.show();
    }

    @Override
    public void onLocationChanged(Location location) {
    }

    @Override
    public void onProviderDisabled(String provider) {
    }

    @Override
    public void onProviderEnabled(String provider) {
    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
    }

    @Override
    public IBinder onBind(Intent arg0) {
        return null;
    }

}

所以可以告诉我如何做到这一点。我在 Normal 类中尝试过,但我无法理解 Fragment 类的用法。

最佳答案

在 fragment 类中使用getActivity()

getActivity() 返回与此 fragment 关联的 Activity。

this 引用当前上下文。 gps 是一个 fragment 。所以使用 getActivity()

java.lang.Object
   ↳    android.content.Context           // see this
       ↳    android.content.ContextWrapper
           ↳    android.view.ContextThemeWrapper
               ↳    android.app.Activity // see this

和 fragment

java.lang.Object
   ↳    android.app.Fragment 

public class GPSTracker extends Service 是一个服务。

你有这个

  gps = new GPSTracker(gps.this)

改为启动服务或将服务绑定(bind)到 Activity 。

您可以使用getApplicationContext()

为了给你一个更好的主意,请查看 commonsware 的详细答案

When to call activity context OR application context?

关于java - Android 如何在 Fragmentclass 中使用 javaclass.this,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21011920/

相关文章:

iPhone SDK : Do I need to ask user for permissions to use GPS?

java - 如何在同一个输入流上读取不同的数据组,并为每个数据组使用不同类型的输入流?

java - 在两个不同时区之间传递日期对象而不在java中应用时区转换

c# - 在 Xamarin Android 中,AssemblyInfo.cs 与 AndroidManifest.xml 有何关系?

android - 如何使用 Maven 在命令行中启动应用程序

ios - 如何在iOS中获得没有Internet和GPS(可能是运营商)的用户所在国家

java - 2类和外部库的JAVA编译问题

java - 实现自定义 Keycloak 身份 validator SPI 时遇到的问题

android - ionic 3 native : File : {code: 5, 消息: "ENCODING_ERR"}

java - 无法解析 "onRequestPermissionsResult"