Posts by Bäda • 136 points
4 posts
-
0
votes2
answers35
viewsA: Help with Compilation for Apk
Change the directory project. You are using special characters in the directory. C: User User <<<<<<< Aki ta with special character. Try to change, it should work.
-
0
votes1
answer63
viewsA: Sendmail Java - Android Studio
Add one (mailto: Uri) right after the creation of Intent intent.setData(Uri.parse("mailto"));
-
1
votes1
answer625
viewsA: Passing Data from Fragments to Activity
You can use events. https://developer.android.com/training/basics/fragments/communicating.html In your Voce Fragment you declare an interface and implement this interface in your Activity. When…
-
1
votes2
answers611
viewsA: How to delete a particular data from a listview?
Like Ack Lay said, you can use the method remove. However I would only make a change to Ack Lay’s algorithm, swap if contains for equais, as an example: if (itens.equals("Arco")) // verifica se…