-
-
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
Changes from 3 commits
81ba80b
0ae7014
9917e66
2a437cc
aab08fb
a6338aa
953bacd
f40178a
ca1d216
3b6e3dc
eeeae58
321f77e
5950314
ece9e69
60d94eb
3cb4ce9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -182,7 +182,7 @@ public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceStat | |
|
||
mCityAdapter.updateData(mCities); | ||
|
||
if (mSpotlightShownCount <= 3) { | ||
if (mSpotlightShownCount <= 4) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My bad, this was an experimentation I was doing on trying to solve the #539 issue. |
||
showSpotlightView(mSpotView); | ||
} | ||
} | ||
|
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; | ||
} | ||
} |
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> |
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!