Skip to content

Latest commit

 

History

History

Meme Share App

This app shows the memes that come from Reddit. We can share the meme through any shared platform like Whatsapp, Facebook, Instagram, etc.

Screenshots

one

Concepts Learned

  • Call various APIs
  • Networking
  • Image processing
  • Add dependencies
  • Call buttons via onClickListener
  • TextView, Layouts
  • Asynchronous callbacks
  • Use Volley and Glide
  • Dark theme (using night colors)
  • Set menu items

Asynchronous Callback

An Asynchronous call does not block the program from the code execution. When the call returns from the event, the call returns back to the callback function. So in the context of Java, we have to Create a new thread and invoke the callback method inside that thread. The callback function may be invoked from a thread but is not a requirement. A Callback may also start a new thread, thus making themselves asynchronous.

Documentation

Transmit network data using Volley : Volley

Glide Github : Glide

Meme API : API

Do you want to contribute?

  • make the app edit the meme
  • make improvements in the UI of the app
  • add support for both orientations
  • prevent loading a new meme when changing the dark mode status
  • add shared preferences to remember user dark mode status