Reputation: 111
Can i develop an android application that must be used by all other application...
For Example : I develop app for changing font style...this app should be used by other application like sms sending.whenever i open and type sms, i can change font style by using my font style app...
Is it possible?
Upvotes: 0
Views: 197
Reputation: 67189
It depends on what you actually want to do, and whether or not the other apps support it.
Your example of changing the fonts system-wide is not possible. Any application can define what fonts to use, and you cannot override that. Forcing an application to use a different font could degrade that app's user experience, so I am pretty happy with this limitation.
It sounds like you want to be able to override or control other applications (either their behavior or their UI). In general this is not possible unless the other application was developed to explicitly allow this.
You can however hook into apps in other ways. A few examples:
AccountManager
and associated classes to provide a system-wide account that other applications can use.Upvotes: 2