I have one gallery view which hosts the widgets,
I added one widget into gallery view after configuring that widget.
Is there any way that i can get that configured widget's settings and use it later.
I have one gallery view which hosts the widgets,
I added one widget into gallery view after configuring that widget.
Is there any way that i can get that configured widget's settings and use it later.
Your question is a little bit vague, since you don't mention what your settings could be.
Typically, for primitive data you could store them in SharedPreferences which is pretty straightforward.
For more complex settings, you might want to look at alternative storage such as to a file or SQLite
EDIT:
Updating my answer since you've changed your question, and now I have a better understanding of what you want.
OK it seems that you want to get access to the configuration of another apps widget. Assuming that the other application stores their configuration in the SharePreferences
, then you are stuck, there is no way to access another apps' SharedPreferences
. This has been asked and answered before
At this point, you should be asking yourself the following :