-
-
Notifications
You must be signed in to change notification settings - Fork 907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added 'Offline Maps' to Navigation Drawer #545
Closed
Closed
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
81ba80b
Added .gitignore file
jtj9817 0ae7014
Work In Progress of Starting Feature for #534
jtj9817 9917e66
Attempt to fix errors seen in previous commit
jtj9817 2a437cc
Made sugggested changes
jtj9817 aab08fb
Deleted travel-mate.iml
jtj9817 a6338aa
Delted modules.xml
jtj9817 953bacd
Deleted vcs.xml
jtj9817 f40178a
Deleted workspace.xml
jtj9817 ca1d216
Deleted Project.xml
jtj9817 3b6e3dc
Minor edit
jtj9817 eeeae58
Deleted gitignore
jtj9817 321f77e
Updated city_history_listitem.xml
jtj9817 5950314
Merge remote-tracking branch 'origin/master'
jtj9817 ece9e69
Updated offline maps icon
jtj9817 60d94eb
Added UML Diagrams for Issue #557
jtj9817 3cb4ce9
Merge branch 'master' of https://github.com/project-travel-mate/Trave…
jtj9817 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
13 changes: 13 additions & 0 deletions
13
Android/app/src/main/java/io/github/project_travel_mate/utilities/OfflineMapsFragment.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,13 @@ | ||
package io.github.project_travel_mate.utilities; | ||
|
||
import android.content.Intent; | ||
import android.support.v4.app.Fragment; | ||
|
||
import adapters.CardViewOptionsAdapter; | ||
|
||
public class OfflineMapsFragment extends Fragment implements CardViewOptionsAdapter.OnItemClickListener { | ||
@Override | ||
public void onItemClick(int position) { | ||
Intent intent; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<android.widget.ScrollView xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" android:layout_height="match_parent"> | ||
|
||
<android.support.v7.widget.RecyclerView | ||
android:id="@+id/offlinemaps_list_recyclerView" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" /> | ||
</android.widget.ScrollView> |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it work in progress or done?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still a work in progress for the MainActivity.java file as I'm still trying to figure out how the feature should be implemented.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Swati4star Hey, just cleaned up this branch for the merging process. Please review it again, thanks!