Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Well, I have so many activities in my android app, most of them have sign out button, I want to create only function which can be accessed through multiple activities in android. Do I have to add a funtion in Application Class ??

Below images will help you understand the scenerio

http://cubixshade.com/images/1.jpg

http://cubixshade.com/images/2.jpg

http://cubixshade.com/images/3.jpg

Sign out button and functionality will be same in all activity.

share|improve this question

2 Answers

up vote 3 down vote accepted

Create an abstract activity subclass.

public abstract YourActivityWithSignOut extends Activity

Implement only the needed functionality and UI in this class, and then have all your other activities extend YouActivityWithSignOut instead of android.app.Activity.

share|improve this answer
+1 I like this approach (obviously there are others that work as well) because it means that you can put common code that is associated with activity-type workflow there. I use this approach as well. – David Wasser Nov 28 '12 at 18:32

Use Application class for Creating fields or methods which you want to share between all Components of an Application.
if you create sign out method in Application class then you will access it in all Activities

you can see this tutorial for how we use Application class for sharing common method's or fields between Activities

http://www.devahead.com/blog/2011/06/extending-the-android-application-class-and-dealing-with-singleton/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.