Tagged Questions
0
votes
1answer
253 views
Android adding dynamically View in RemoteViews show only the first view! How I can change layout_alignParentBottom from code?
How I can add dynamically a View in a Relative layout using a cicle like for?
This is my code:
RemoteViews remoteViews = new RemoteViews(c.getPackageName(), R.layout.layout_1);
for(int i=0; ...
1
vote
0answers
89 views
selected one from a few layouts(as themes) and use in remoteview
I have a multi-layouted widget, and here a few layouts (each as theme) and I need assign selected theme (layout) with desired remoteview. As in topic, I added to manifest 2 receivers and created ...
2
votes
2answers
769 views
Adding TextViews to home screen widget programmatically
I want to programmatically add Text Views controls to my home screen widget. In the following example I populate Linearlayout with TextViews, but how should I use RemoteViews here? It only accepts xml ...