Skip to main content
0 votes
2 answers
65 views

The core of this question is how to send a MatrixCursor of data from an activity to a fragment. I am doing my search functionality in my activity and am returning a fragment which contains a list ...
NVA's user avatar
  • 1,692
0 votes
0 answers
193 views

I have a custom class with implementation: private static class Item { String userID; String userEmail; Item(String userID, String userEmail) { this.userID = userID; this....
waseefakhtar's user avatar
  • 1,433
-2 votes
2 answers
39 views

Every row in my listview has 2 buttons. The text to be shown depends on some characteristics, and hence I want to change the text on the Button. However, I am not only not able to change the text, but ...
user3079872's user avatar
0 votes
0 answers
767 views

I know there is a lot of solutions suggested and most of them i got understand them clear use AutoCompleteTextView and i want usesearch view as small developer i try to find the solution to fit my ...
f2k's user avatar
  • 99
0 votes
1 answer
507 views

I am trying to get a basic matrix cursor running, but for some reason the list remains empty. Would appreciate if someone could spot what may be wrong with the code? String []columns = new String[...
Samuel Davies's user avatar
2 votes
2 answers
5k views

I have a search view that has the suggestions populated by a MatrixCursor (because I already have an array of Strings). However I would like to get which item is being selected by the user. So far I ...
loneranger's user avatar
1 vote
1 answer
268 views

I'm trying to make a new android project in which I collect my data from an online JSON file. If I look on the internet, I can see a lot of examples where they are storing the collected data in a ...
Nike Sprite's user avatar
0 votes
2 answers
716 views

Sorry for the mouthful of a title, I have to cut it down because I exceeded the 150 character limit. I have an AutoCompleteTextView (ACTV) and I am using a SimpleCursorAdapter since the normal ACTV ...
Razgriz's user avatar
  • 7,343
0 votes
1 answer
124 views

Hee guys, I got 2 ListViews, one for the left side and one for the right side. However I have one Cursor with values. Now I want to get the even rows from the cursor and put that in a matrixcursor to ...
Jordi Sipkens's user avatar
0 votes
0 answers
216 views

I have used the Google places API to retrieve results through the implementation of setOnQueryTextListener of the searchView widget, then I am creating a SimpleCursorAdapter by using the results ...
harshitpthk's user avatar
  • 4,136
1 vote
0 answers
77 views

I am using a SimpleCursorAdapter with a MatrixCursor to load data from my server into a listview. I want to customize each item using a ViewBinder. I noticed that setViewValue has the following ...
Pacemaker's user avatar
  • 1,117
3 votes
0 answers
931 views

My Android application uses a ListView with simple two-line rows. The list is filled in using simple static data. I am aware of two different solutions for filling in the list in these circumstances: ...
Legorol's user avatar
  • 31
6 votes
1 answer
3k views

I have a content provider that returns a MatrixCursor for the query() method. Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { MatrixCursor ...
shivagss's user avatar
0 votes
1 answer
417 views

I have a class which is implementing FilterQueryProvider and having an inner class which is extending AsyncTask. I am using this inner class to call a REST API and getting data successfully in ...
Uniruddh's user avatar
  • 4,428
5 votes
1 answer
5k views

I am trying to input data from a List<ParseObject> to a cursor. ParseObject documentation can be found here. I found out that you can use MatrixCursor to do this, referring to helpful sites: ...
nommer's user avatar
  • 2,978

15 30 50 per page