Added comments

modified:   ProfileAdapter.java
 modified:   TimeLineAdapter.java
This commit is contained in:
Paul Lagerweij
2017-06-29 20:34:15 +02:00
parent 4754c231fe
commit 5c27584dd2
2 changed files with 4 additions and 0 deletions

View File

@@ -35,6 +35,8 @@ public class ProfileAdapter extends BaseAdapter {
private TextView comment; private TextView comment;
private TextView nietSlechts; private TextView nietSlechts;
private ImageView photo; private ImageView photo;
/* Hold a reference to the current animator, so that it can be canceled mid-way. */
private Animator mCurrentAnimator; private Animator mCurrentAnimator;
/* ProfileAdapter constructor */ /* ProfileAdapter constructor */

View File

@@ -42,6 +42,8 @@ public class TimeLineAdapter extends BaseAdapter implements AdapterView.OnItemCl
private Context mContext; private Context mContext;
private ArrayList<UriPost> mData; private ArrayList<UriPost> mData;
private DatabaseReference mRef; private DatabaseReference mRef;
/* Hold a reference to the current animator, so that it can be canceled mid-way. */
private Animator mCurrentAnimator; private Animator mCurrentAnimator;
/* TimeLineAdapter constructor */ /* TimeLineAdapter constructor */