Android如何在Fragmentclass中使用javaclass.this

Android如何在Fragmentclass中使用javaclass.this,java,android,gps,Java,Android,Gps,我正在尝试在我的Android应用程序中使用GPS系统。我正在关注这一点 当我试图调用我的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;

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

当我试图调用我的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;
    }

}
所以你可以告诉我怎么做。我在普通类中尝试过,但无法理解片段类的用法。

在片段类中使用
getActivity()

getActivity()
返回与此片段关联的活动

引用当前上下文<代码>gps是一个片段。因此,请使用
getActivity()

和碎片

java.lang.Object
   ↳    android.app.Fragment 
公共类GPSTracker扩展服务
是一项服务

你有这个

  gps = new GPSTracker(gps.this)
而是启动服务或将服务绑定到活动

您可以使用
getApplicationContext()

为了给你一个更好的想法,请通过Commonware查看详细的答案

在片段类中使用
getActivity()

getActivity()
返回与此片段关联的活动

引用当前上下文<代码>gps是一个片段。因此,请使用
getActivity()

和碎片

java.lang.Object
   ↳    android.app.Fragment 
公共类GPSTracker扩展服务
是一项服务

你有这个

  gps = new GPSTracker(gps.this)
而是启动服务或将服务绑定到活动

您可以使用
getApplicationContext()

为了给你一个更好的想法,请通过Commonware查看详细的答案


Fragment
不从
上下文扩展,因此不能将
Fragment
(或因此将
gps
对象)传递到
GPSTracker
构造函数中。但是,您可以在
片段上调用
.getActivity()
,以获取其关联的
活动,该活动从
上下文继承

gps = new GPSTracker(gps.this.getActivity());

Fragment
不从
上下文扩展,因此不能将
Fragment
(或因此将
gps
对象)传递到
GPSTracker
构造函数中。但是,您可以在
片段上调用
.getActivity()
,以获取其关联的
活动,该活动从
上下文继承

gps = new GPSTracker(gps.this.getActivity());

首先,扩展
服务中的
GPSTracker
类意味着它正在扩展
上下文。。。那么,为什么需要使用上下文作为参数的GPSTracker参数化构造函数呢?您可以直接在服务中调用
getApplicationContext()
,也可以使用
引用,因为服务是一个上下文

其次,不建议(我认为这不是一种方法)为
服务
(甚至对于
活动
广播接收器
等)使用参数化构造函数。如果有参数化构造函数,则必须定义默认构造函数

第三,这不是手动为
服务
创建对象(实例)的方法,即使
服务
是一个简单的Java类。系统将负责实例化
服务


最后,正如其他答案所说,
片段
不会扩展
上下文
。因此,首先应该使用
getActivity()

,扩展
服务中的
GPSTracker
类意味着它正在扩展
上下文。。。那么,为什么需要使用上下文作为参数的GPSTracker参数化构造函数呢?您可以直接在服务中调用
getApplicationContext()
,也可以使用
引用,因为服务是一个上下文

其次,不建议(我认为这不是一种方法)为
服务
(甚至对于
活动
广播接收器
等)使用参数化构造函数。如果有参数化构造函数,则必须定义默认构造函数

第三,这不是手动为
服务
创建对象(实例)的方法,即使
服务
是一个简单的Java类。系统将负责实例化
服务


最后,正如其他答案所说,
片段
不会扩展
上下文
。因此,您应该使用
getActivity()

谢谢,它正在工作。您可以解释getActivity()和类之间的区别。这种类型的调用。@user3144005您应该启动服务或将服务绑定到活动,而不是实例化它。检查我的帖子中的链接谢谢它正在工作,可以解释Getactivity()和class之间的区别。这种类型的调用。@user3144005您应该启动服务或将服务绑定到活动,而不是实例化它。查看我帖子中的链接