我如何通过单击按钮来访问两个活动(服务和片段活动)...没有按钮它工作得很好,但按钮不是...而我的项目必须是一个按钮。 我的服务代码在这里,我必须与我的其他活动一起运行
public class GPSTracker extends Service implements LocationListener {
private final Context context;
boolean isGPSEnabled=false;
boolean isNetworkEnabled=false;
boolean canGetLocation=false;
Location location;
protected LocationManager locationManager;
public GPSTracker(Context context)
{
this.context=context;
}