What is difference between this and getContext(), when I say this I mean this within an Activity.
this
getContext()
Activity
There is no difference. When you are in an Activity, getContext() will return this. This is because an Activity is a context!