Posts by ademar111190 • 236 points
7 posts
-
1
votes1
answer953
viewsA: How to uninstall an app automatically before installing again?
You can use the plugin android studio called "ADB Idea" in it there are commands like Uninstall an application, kill an app, give a clear data, etc.. For even more practicality you can either put a…
-
2
votes1
answer114
viewsA: Problems with Thread on Android
Dude you can only manipulate one View in UI Thread. Download the data and treat it as you wish in your Thread, but when this data is popular in your ListView back to Main Thread, so you can use a…
-
1
votes1
answer463
viewsA: How to install an apk directly from my application, with Titanium studio?
If you just want to install you can use the adb... instead of transferring to the memory of the cell phone. adb install -r /caminho/do/arquivo.apk Obs.: the apk file needs to have the same signature…
-
1
votes1
answer160
viewsA: Widget layout is not working
Try to remove your View id "@+id/view1" because how we view here the view class is not listed among those of type Remoteviews and is therefore not supported by widgets apps.…
-
3
votes1
answer2235
viewsA: How to create a widget?
To create a widget on Android you need to: A layout for the widget, i.e. a common layout file, which will be in the res/layout folder An xml describing widget properties, i.e a Appwidgetproviderinfo…
-
2
votes1
answer62
viewsA: How to display a layout in the Homescreen Widget for each day of the week?
You need to use class Alarmmanager to schedule a notification where every day at an X time you are notified by the System in your Broadcastreceiver, this will receive notification through the method…
-
2
votes2
answers1248
viewsA: Handling java/python/c directories
Hummm this kind of question in stackoverflow.com would be reported, since it’s not a question about a mistake or something, you’re simply asking someone to solve a problem for you. However as said…