BenGoBlue05 / UdacityAlumni

Udacity Alumni Android App
57 stars 30 forks source link

feat: Add Animated Card for User Bios to Main User List #48

Closed PPartisan closed 7 years ago

PPartisan commented 7 years ago

Summary

Re-adds animated sliding cards for user bios. Clicking on an avatar image in a post under the "Home" tab will open a card from the bottom of the screen that contains the user's profile picture, name and (for now) text from the post.

Other Information

This commit includes some refactoring. Some logic is moved from PostFragment into a new PostFirebaseAdapter class.

I have included a ToDo for the Sliding Card as the content should eventually include the user's biography data.

PostFragment.class
//...
+        //todo Replace 'Content' with User Bio
+        mSlidingViewAdapter.setContent(post.text);

See: Issue #5, #32