Questions tagged as 'listview'

1
answer

Sorting a ListView alphabetically in vb 6

I have two lists A and B, the list A data is exported from the DB, these already have ordered alphabetically to the list. From this list I add data in the other list (list B), the data that is inserted in list B, are sorted according to the inse...
asked by 22.05.2014 / 13:31
1
answer

Click and hold in ListView [duplicate]

How do I program to click and hold down a method other than just a normal click in the ListView? I would like tips, tutorials something that can help me. @Override public void onItemClick(AdapterView<?> parent, View view, int positi...
asked by 16.07.2014 / 15:32
1
answer

The search for my DB placed in a listView (Arrayadapter) returns the address of the object and not the content

I made an APP that saves the date and a string of numbers (8 numbers) in the Android database. I created an object (with date and numbers), but when I go to search all objects inside the Database and put a list it returns the addresses saved....
asked by 02.02.2018 / 13:15
1
answer

ListView with config.properties

I have the following question, I'm using a listview with a 300 character of a game, when clicking on a character it inserts some data that is written in config.properties , all the characters have descriptions, vocations among other...
asked by 14.09.2017 / 15:47
1
answer

How to receive all Firebase Storage images and display in a listview

I have several images captured via camera or gallery that was uploaded via app in Firebase Storage, using Glide to display images, but only manually (added one by one in the hand), and my up-loaded images are named with the datatime. I need a te...
asked by 19.07.2017 / 05:32
1
answer

Fill a ListView in Xamarin with data

Good morning. I'm trying to fill a ListView in Xamarin with data but I'm not getting it, it's giving a generic exception. List<string> listaTeste = new List<string>(); listaTeste.Add("MIGUEL"); listaTeste.A...
asked by 28.06.2017 / 16:11
1
answer

How to list files and folders on ftp server?

I'm not able to make the FTP server listing in the app using the Android emulator, I realize that in older versions of Android the listing usually happens. But from Android 4 I have problems for this, I also tested running the project on my m...
asked by 22.10.2016 / 02:05
1
answer

Change ListView color by selecting [duplicate]

How can I change the color of a listView when selecting? Here are the steps in my project: listDebitosPendentes.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemC...
asked by 25.11.2016 / 14:46
1
answer

Add empty item to the end of ListView

I have FloatingActionButton in the lower right corner of my screen, and when it reaches the end of ListView , it sits on top of a button. I would like to add an empty item at the end of ListView so that when it reaches the en...
asked by 18.08.2016 / 16:47
3
answers

How to know which button was clicked on my ListView?

I have a ListView, on each Line I have two buttons. How do I know which button was clicked? Follow my code: <ImageView android:id="@+id/imageView_imagen" android:layout_width="145dp" android:layout_height="145dp" andro...
asked by 04.08.2016 / 06:53