Posts by Alexandre Atoji • 341 points
5 posts
-
6
votes3
answers942
viewsA: How to change the theme of an App to Android to look like iOS?
Although it is possible to do this with themes and customizing components, this is not recommended for the simple fact that the app has an iOS app behavior can compromise the usability of the app as…
-
1
votes2
answers252
viewsA: Slideshow with images from Urls
NetworkOnMainThreadException occurs when the app tries to do some network operation on the main thread (the one that runs the interface). This Exception was introduced into Honeycomb to prevent…
-
0
votes2
answers606
viewsA: View Listview with available networks
You can make an Adapter that you inherit ArrayAdapter<ScanResult> and in it you replace the way to display the information by overwriting the method getView. Also you can create a…
-
4
votes2
answers5433
viewsA: How to finish layout Android App?
In the code part, to customize a layout or widget exchange the drawable of backgrounds for another with images exchanged. Like, for example, in a Edittext you can swap the background (both in xml…
-
10
votes9
answers17662
viewsA: Error: R cannot be resolved
You imported the R 'wrong' by mistake. Change the line of the import for: import <pacote_do_projeto>.R For example: import br.com.app.R If the project package is 'br.com.app'…