Skip to content

Commit

Permalink
included a language section for the meet pen pal
Browse files Browse the repository at this point in the history
  • Loading branch information
Kent Nguyen committed Dec 14, 2013
1 parent a89bd6a commit 7088005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PenPal/src/edu/berkeley/cs160/off_by_1/MeetPenPal.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ public void setDetailsTextView(JSONObject penPalDetails) {
name = penPalDetails.getString("first_name");
details.append("Meet ").append(name).append(" ");
details.append(penPalDetails.getString("last_name")).append("\n\n");
details.append(name).append(" is from ").append(penPalDetails.getString("location")).append("\n");
details.append(name).append(" is from ").append(penPalDetails.getString("location")).append("\n\n");
details.append(name).append(" speaks ").append(penPalDetails.getString("language")).append("\n");
//String.format(getString(R.string.pen_pal_details), name,
detailsText.setText(details.toString());
} catch (Exception e) {
Expand Down
Binary file modified appcompat/bin/android-support-v7-appcompat.jar
Binary file not shown.

0 comments on commit 7088005

Please sign in to comment.