-
-
Notifications
You must be signed in to change notification settings - Fork 922
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
Low Fidelity Prototype for Home Page #548
Changes from all commits
81ba80b
0ae7014
9917e66
2a437cc
dcbda07
a5f0f86
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.idea | ||
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. we already have a gitignore file. Add these there only |
||
*.li |
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 |
---|---|---|
|
@@ -233,7 +233,9 @@ private Fragment getFragmentByNavMenuItemId(int id) { | |
case R.id.nav_utility: | ||
fragment = UtilitiesFragment.newInstance(); | ||
break; | ||
|
||
//Work In Progress Offline Maps | ||
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. this change shouldnt be a part of this commit 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. Yeah, I was meaning to ignore this file change but it still got mixed in the commit. |
||
case R.id.nav_offlinemaps: | ||
break; | ||
case R.id.nav_about_us: | ||
fragment = AboutUsFragment.newInstance(); | ||
break; | ||
|
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 required?
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.
I just included the .gitattributes file to fix the line endings formatting but forgot to add the file to the .gitignore.