roiberg
roiberg

Reputation: 13747

Changing one apps preferences from another app

I have two apps and I want one app to change preferences in another app.

Is it possible? If so, then how?

Upvotes: 1

Views: 477

Answers (2)

Lazy Ninja
Lazy Ninja

Reputation: 22527

You could use Content Providers. Put your settings in a database so that the other application can read.

Upvotes: 1

Changyeop Kim
Changyeop Kim

Reputation: 173

It means that you need some passage between two applications. If A application provides content provider, B application can access that content provider and change values in that provider. Have a look this article http://developer.android.com/guide/topics/providers/content-providers.html

Upvotes: 2

Related Questions