Posts by Welyson • 29 points
12 posts
-
0
votes2
answers146
viewsQ: Remove accent on search using android searchview
I wish that when it was picked up on my listview João were shown João, Joao, joão, joao. I’m using a searchview, I read something about Normalizer but n understood very well. @Override public…
-
0
votes1
answer46
viewsQ: Display given arraylist, with click on given button
Hello, My xml has several buttons as I do so that when I click a certain button press an arraylist in listview example Botão1 clicado -> arraylist<Perguntas> carrega na listview1 Botão2…
-
0
votes1
answer47
viewsQ: How to display only set objects as true in a new Activity
I have here an arraylist that is shown in a listview, when I give long click a dialog is displayed there contains the favorite option that when it is selected the obeject is marked as true, as I do…
-
0
votes1
answer76
viewsQ: How to put only true items in the second Activity?
I’m trying to make a favorite activity, I’ll follow the example of this guy here. In the second Activity I will create how I would put these items set as true in a listview? and play them normally I…
-
0
votes2
answers49
viewsQ: Problem in my search engine code
As I can not use searchview I decided to use an edittext and a logica q found on a forum, but I go through difficulties have some idea? Mainactivity.class public void CarregarEncontrados() { int…
-
0
votes1
answer227
viewsA: Issue with webview, open more than one link outside the app
My Solution @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { if (Uri.parse(url).getHost().equals("sites.google.com")) { //open url contents in webview return false; }if…
-
0
votes1
answer227
viewsQ: Issue with webview, open more than one link outside the app
I tried my set my webview to open more than one link, but n works my code makes websites.google open in the webview of the app and the rest of the links open out(android Nav), I want the…
-
0
votes0
answers27
viewsQ: Compile multDex error
I’m having compilation problem I’ve seen several topics here I tried td but, it doesn’t work, I also tried several combinations but it won’t. Obs: I’ve tried to td that there is here in the forum!!!…
-
1
votes1
answer184
viewsQ: Search in listview does not show the corresponding item
In listview when searching for an item it shows the right matching name, but when I click to play it plays another item instead of the searched item. Mainactivity public class MainActivity extends…
-
1
votes1
answer59
viewsA: open external link in actionBar
Solution Uri uri = Uri.parse("http://www.google.com"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);
-
-2
votes1
answer59
viewsQ: open external link in actionBar
How do I open an external link from the Toolbar menu I tried some solutions but n got, I marked the snippet that would put the click to open the link in the browser. public boolean…
-
1
votes1
answer64
viewsQ: change listview play in audio
I’d like to change that listview scheme instead of pressing the play buttons, I just want to press the list item and it (in case) plays the sound and when I click on another item it stops the q was…