#9 Import/Export feature Bugfixes

This commit is contained in:
jannis 2019-08-21 20:09:45 +02:00
parent b0217119e7
commit 50e8976424
4 changed files with 47 additions and 2 deletions

View File

@ -34,6 +34,9 @@ public interface WorkoutDao {
@Query("SELECT * FROM workout ORDER BY start DESC") @Query("SELECT * FROM workout ORDER BY start DESC")
Workout[] getWorkouts(); Workout[] getWorkouts();
@Query("SELECT * FROM workout_sample")
WorkoutSample[] getSamples();
@Insert @Insert
void insertWorkoutAndSamples(Workout workout, WorkoutSample[] samples); void insertWorkoutAndSamples(Workout workout, WorkoutSample[] samples);
@ -46,7 +49,7 @@ public interface WorkoutDao {
@Update @Update
void updateWorkout(Workout workout); void updateWorkout(Workout workout);
@Update @Insert
void insertSample(WorkoutSample sample); void insertSample(WorkoutSample sample);

View File

@ -25,6 +25,7 @@ import androidx.room.ForeignKey;
import androidx.room.Ignore; import androidx.room.Ignore;
import androidx.room.PrimaryKey; import androidx.room.PrimaryKey;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.github.mikephil.charting.data.Entry; import com.github.mikephil.charting.data.Entry;
import org.mapsforge.core.model.LatLong; import org.mapsforge.core.model.LatLong;
@ -59,9 +60,11 @@ public class WorkoutSample{
public double speed; public double speed;
@JsonIgnore
@Ignore @Ignore
public Entry tmpEntry; public Entry tmpEntry;
@JsonIgnore
@Ignore @Ignore
public double tmpRoundedSpeed; public double tmpRoundedSpeed;

View File

@ -1,3 +1,22 @@
/*
* Copyright (c) 2019 Jannis Scheibe <jannis@tadris.de>
*
* This file is part of FitoTrack
*
* FitoTrack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FitoTrack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.tadris.fitness.util.export; package de.tadris.fitness.util.export;
import android.annotation.SuppressLint; import android.annotation.SuppressLint;
@ -45,7 +64,7 @@ public class Exporter {
listener.onStatusChanged(20, context.getString(R.string.workouts)); listener.onStatusChanged(20, context.getString(R.string.workouts));
container.workouts.addAll(Arrays.asList(database.workoutDao().getWorkouts())); container.workouts.addAll(Arrays.asList(database.workoutDao().getWorkouts()));
listener.onStatusChanged(40, context.getString(R.string.locationData)); listener.onStatusChanged(40, context.getString(R.string.locationData));
container.workouts.addAll(Arrays.asList(database.workoutDao().getWorkouts())); container.samples.addAll(Arrays.asList(database.workoutDao().getSamples()));
listener.onStatusChanged(60, context.getString(R.string.converting)); listener.onStatusChanged(60, context.getString(R.string.converting));

View File

@ -1,3 +1,22 @@
/*
* Copyright (c) 2019 Jannis Scheibe <jannis@tadris.de>
*
* This file is part of FitoTrack
*
* FitoTrack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FitoTrack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.tadris.fitness.view; package de.tadris.fitness.view;
import android.app.Activity; import android.app.Activity;
@ -27,6 +46,7 @@ public class ProgressDialogController {
private void initDialog(){ private void initDialog(){
dialog.setContentView(R.layout.dialog_progress); dialog.setContentView(R.layout.dialog_progress);
dialog.setCancelable(false);
infoView= dialog.findViewById(R.id.dialogProgressInfo); infoView= dialog.findViewById(R.id.dialogProgressInfo);
progressBar= dialog.findViewById(R.id.dialogProgressBar); progressBar= dialog.findViewById(R.id.dialogProgressBar);
} }