Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/src/main/java/com/github/mobile/ui/BaseActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ public class BaseActivity extends RoboActionBarActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);



finder = new ViewFinder(this);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ public NavigationDrawerAdapter(Context context, List<User> orgs, final AvatarLoa
createData();
}

//TODO
//Add link to view personal profile
private void createData() {
orgs.remove(0);
String[] names = new String[] { context.getString(R.string.home), context.getString(R.string.gist),
context.getString(R.string.issue_dashboard), context.getString(R.string.bookmarks) };
context.getString(R.string.issue_dashboard), context.getString(R.string.bookmarks), "Profile" };
String[] icons = context.getResources().getStringArray(R.array.navigation_drawer_icon_list);
data = new ArrayList<>();
int amount = names.length + orgs.size() + 2;
Expand Down