Posts by Alan Vargas • 96 points
4 posts
-
2
votes1
answer48
viewsA: Error when including Listview
The way you are trying to work with Listview is wrong, as you actually have to insert an Adapter and it has to be a String Array, follow an example below: String[] itens = { "item1", "item2",…
-
2
votes1
answer176
viewsA: Cardview with multiple images
Try onBindViewHolder that even in the example below, it will work. But I believe there are alternatives with better performance. @Override public void onBindViewHolder(MovieViewHolder holder, int…
androidanswered Alan Vargas 96 -
1
votes2
answers85
viewsA: Fixed and unique value on Android in Unity 3D
Thanks, I ended up finding this way also that apparently worked, but I’m testing on various devices here to see if this solution is stable. AndroidJavaClass up = new AndroidJavaClass…
-
3
votes2
answers85
viewsQ: Fixed and unique value on Android in Unity 3D
I’m having trouble getting a unique and fixed value in C#, I need to get a value like this, for security reasons of my software. I’ve tried using the SystemInfo.deviceUniqueIdentifier, but…