-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Vávra
committed
Sep 19, 2015
1 parent
8338195
commit ba1157c
Showing
9 changed files
with
173 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
app/src/main/java/org/destil/gpsaveraging/ui/viewmodel/MainFragmentViewModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.destil.gpsaveraging.ui.viewmodel; | ||
|
||
import android.databinding.ObservableBoolean; | ||
import android.databinding.ObservableField; | ||
import android.location.Location; | ||
|
||
/** | ||
* ViewModel for Main Fragment data binding. | ||
* | ||
* @author David Vávra ([email protected]) | ||
*/ | ||
|
||
public class MainFragmentViewModel { | ||
public final ObservableBoolean hasFix = new ObservableBoolean(); | ||
public final ObservableField<String> satelliteInfo = new ObservableField<>(); | ||
public final ObservableBoolean isAveraging = new ObservableBoolean(); | ||
public final ObservableBoolean isReadyForSharing = new ObservableBoolean(); | ||
} |
Oops, something went wrong.