Skip to content

Commit

Permalink
Merge pull request #242 from rectangle-dbmi/icon_generation_refactor
Browse files Browse the repository at this point in the history
Release Ready
  • Loading branch information
epicstar committed Nov 14, 2015
2 parents d807181 + 6f8bed2 commit 5d2aed6
Show file tree
Hide file tree
Showing 6 changed files with 174 additions and 165 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
applicationId "rectangledbmi.com.pittsburghrealtimetracker"
minSdkVersion 16
targetSdkVersion 23
versionCode 56
versionName "5.01"
versionCode 57
versionName "5.1"
}
buildTypes {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,7 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container,

mDrawerListView = (ListView) inflater.inflate(
R.layout.fragment_navigation_drawer, container, false);
mDrawerListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

selectItem(position);
}
});
mDrawerListView.setOnItemClickListener((parent, view, position, id) -> selectItem(position));
mDrawerListView.setAdapter(
new ColoredArrayAdapter(
getActionBar().getThemedContext(),
Expand Down
Loading

0 comments on commit 5d2aed6

Please sign in to comment.