I want to create updatable listview.
I found great example here:
https://github.com/commonsguy/cw-advandroid/tree/master/AppWidget/LoremWidget
But ListView there is static.
I want to be able to update listview that I use on Homescreen Widget from app mainActivity.
For example:
I have some app activity:
With only 2 elements: EditText and Button
And I have some homescreen widget for this app with ListView
I want to be able to add item to the ListView when I clicking on Button in main app.
Is it possible?