Questions tagged as 'baseadapter'

5
answers

List view shows only one result

I'm creating a listview with Realm and it only shows the first result. With debugger I have seen that the variable position does not increase in value and the one covered by the List is always with the same value. In the s...
asked by 14.05.2017 / 11:08
1
answer

Adapter always shows me the same item in ListView

I am developing an Android application that uses Google Sheets as a database. The operation, basically, is that I scan a bar code from a book, it keeps all the information about this book in the sheet of Google Sheets, and what I want is that th...
asked by 28.01.2018 / 18:40
2
answers

Android 2.3: Two buttons in Listview with BaseAdapter and OnClickListener

MY CASE: I have a fragment (fraArticulos) and its respective Layout (lytarticulos) which contains a listview (lstArticulos). fraArticulos.java public class fraArticulos extends Fragment { String[] NomProd = {'PC','Teclado','M...
asked by 14.03.2017 / 00:53
3
answers

How to delete selected items from a listiview

I have been trying for days to delete the elements that I have selected in a Listview by means of checkboxs without success. Only achieve the total elimination of the list. Here goes my code: item_agenda.java public class Item...
asked by 07.09.2017 / 21:21
0
answers

Edittext on base adapter

I have a custom adapter with text boxes, but when there are many and I select one, I get the keyboard and automatically selects or closes the keyboard and does not save me what I capture on the keyboard.     
asked by 23.10.2018 / 20:08
1
answer

save actions performed in listview android

I have a listview with a base adapter , whose filling comes from a webservice , I occupy the library LikeButton to animate the" like "button that works correctly, if the problem is that when you go through the listview to see...
asked by 30.01.2017 / 20:06
1
answer

Update data in a BaseAdapter

I have a problem in Android Studio. First I leave the BaseAdapter: public class AdaptadorGaleriaProductos extends BaseAdapter { private List<Producto> productosArray = new ArrayList<Producto>(); Context context; int background; pr...
asked by 20.04.2017 / 22:35