Posts by Kleyton Santos • 373 points
10 posts
-
1
votes1
answer146
viewsA: How to have only one Adapter for various Activity?
I think I understand your question. Currently you have items being created on your Adapter, but you want to use the same Adapter with different items. If that is so, just pass the list of elements…
-
1
votes1
answer954
viewsA: How to pass a List using Intent from an Activity to or Activity
First, make your class implement Serializable, example: public class Carro implements Serializable{} In your Internet you cast a serializable: List<Carro> list = new ArrayList<Carro>();…
androidanswered Kleyton Santos 373 -
1
votes1
answer1032
viewsA: How to upload and download the same request using Angularjs and Web api?
I managed to solve, it follows as it was the code, I am using Angular Material so the 'apsUploadFile' directive to leave the input file button in the material style design. Angular…
-
3
votes1
answer1032
viewsQ: How to upload and download the same request using Angularjs and Web api?
I am developing a functionality that will receive a spreadsheet in format . xlsx, will perform a processing and return this sheet with the columns added, in which case I should upload a file and in…
-
1
votes1
answer56
viewsA: Problem in View (details)
Young man, you can’t directly access a property on a list. Note that your view is powered by Ienumerable @model IEnumerable<WebAppCatechesis2.ViewModels.GrupoViewModel> And just below you try…
-
2
votes2
answers96
viewsA: Error generating custom Listview
In the "Bluetoothadapert.java" class replace the line: View view = inflater.inflate(R.layout.adapter_bluetooth, null); for that: View view = inflater.inflate(R.layout.adapter_bluetooth, parent,…
-
7
votes1
answer8939
viewsA: How I use the Progress bar
When you need to do some tasks that need loading like network operations or something that might look like your application is stuck, you should use a separate thread for this. But this other thread…
-
3
votes3
answers4129
viewsQ: Directory problems
I am trying to read a file . html but I cannot get the path of this file. I have already used Environment.GetCurrentDirectory and Directory.GetCurrentDirectory but did not succeed. Below follows…
-
1
votes3
answers3144
viewsA: AVD does not carry
Hello! Unfortunately, the AVD is too slow. In my opinion the best alternative is to use Genymotion because with it you simply choose a device, lower the . iso and after play. Works much faster than…
-
4
votes1
answer731
viewsA: What is the best AVD for an app developed preferably for g motorcycle?
Hello! There is Genymotion, in which you can download several ready-made isos of the form that are in the original devices. You can emulate Moto G in Genymotion. Following link:…