Tagged Questions
0
votes
0answers
17 views
HTML TAGS form db sqlite with cursor adapter
after two weeks, I made a cursor adapter, and say goodbye to simplecursoradapter.
You suggested me to make a custom adapter if I need use html tags.
I think I did, but I need a last hand.
I post four ...
0
votes
1answer
29 views
Title of ContextMenu from ListView item
I am trying to set the title of the ContextMenu from the selected item in the ListView. However everytime I run this on the emulator, it crashes and I have to Force Close it. DDMS shows that an ...
0
votes
1answer
65 views
getItem(position) returns same object for different values of position
I have a adapter with the following piece of (test) code in public View getView(int position, View convertView, ViewGroup parent):
Cursor itemCursor = (Cursor) getItem(position);
Cursor ...
0
votes
0answers
39 views
Populate ListView from SQLiteDate sorting by Distance from user
I am working on my first app, and want to make a list that will pull venues from a database and then sort them by distance from the user positions. I haven't done the coding to get the users position ...
0
votes
0answers
42 views
Putting dynamically generated spinners into GridView - how to achieve it?
Spinners in my case are generated dynamically:
for (int i = 0; i < spinnerCount; i++) {
spinner = new Spinner(getApplicationContext());
spinner.setId(i);
...
0
votes
1answer
65 views
Joining multiple records in a CursorAdapter
I'm trying to build a ListView that represents a list a recipes. I get the concept of using a SimpleCursorAdapter to accomplish that.
However, in addition to showing the recipe image & title for ...
0
votes
0answers
16 views
Loading a number of ContactsManager
I want to load a specific number of contacts to my ListView, let's say 5, using adapters and cursors. What do i have to change in my code?
private ListView mContactsList;
private ...
1
vote
1answer
76 views
Application reading information from SQL databases : required / optional classes and methods?
I am working on an application whose purpose is to display a listview whose content will depend on which button the user clicks, and whose data come from a sql databse. It means my database will be ...
0
votes
1answer
83 views
Application with different requests sent to a database (SQL) depending on buttons clicked
I still am a beginner in Android development and will try to make my question as clear as possible with a schema of what I have in my mind.
Purpose of this application:
- I want the user to have the ...
0
votes
3answers
285 views
ANDROID: Listview wont update after deleting database data
New to Android and I'm having an issue with updating my a ListView after deleting entries from a database.
In my activity I have a ListView with multiple choice checkboxes in each row. After the ...
0
votes
1answer
32 views
ArrayIndexOutOfBoundException only when the array lenght is equal to one [closed]
I've an array that collects the result of a rawQuery. It works perfectly, but when It has only one result throws this exception.
public String [][] getList() {
SQLiteDatabase db = ...
0
votes
0answers
73 views
android audio content provider not working
String selection = MediaStore.Audio.Media.IS_MUSIC + " != 0";
Uri uri;
int columnIndex;
String[] projection = { MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.ARTIST, ...
2
votes
1answer
56 views
How do I pass an integer to an instance of a class and use it to call the method of another class?
here's activity 1 which is a listview. when the user clicks on an item, I want the item clicked to launch an instance of a class and pass an int value to it, which will later be used in a switch.
...
1
vote
2answers
1k views
List view with simple cursor adapter items checked are un-checked during scroll
I have problem that I couldn't find answer on SO - all problems solved on SO where about too much different issue and didn't work.
Problem is -
1. Clicked rows in ListView (after click they are marked ...
2
votes
1answer
90 views
get my cursor from sum function
This is my function to get the query :
public Cursor getSaldo(String id) {
String[] args={id};
return(getReadableDatabase()
.rawQuery("SELECT sum("+t_jumlah+") "+
...
2
votes
1answer
1k views
ViewPager PagerAdapter with cursor - CursorLoader.onLoadFinished doesnt get called with different query
I am doing like a quote application that pulls the quotes from the database and I need to display quotes in a ViewPager.
I have created my CursorPagerAdapter which seems to work well.
public class ...
1
vote
1answer
510 views
ViewPager and Database
The data is in a Database, so I would normally use CursorAdapter and have it work with CursorLoader on a ListView, however now I need a ViewPager instead of a ListView and that takes a PagerAdapter ...
1
vote
5answers
1k views
Add extra element to cursor adapter android
I have a Cursor that contains all rows from my database. That Cursor I pass to a CursorAdapter, and display the data in a list. But I need to show one extra element in the beginning. How can I do ...
1
vote
1answer
176 views
Display two blended cursors in android
I have what I assumed was a straight forward issue, but after a thorough search I can find no solution:
I have two data sources with two distinct data types: apples and oranges. The only column in ...
-2
votes
4answers
319 views
android listview adapter cursor [closed]
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.artistname);
Bundle extras = getIntent().getExtras();
String val = ...
0
votes
0answers
292 views
Can I provide more efficient filtering in Listview?
I'm new on Android. I'm creating a list that contains the titles of various songs from my database. The Listview is filtering from the string when user write on the searchbar in the ActionBar. Can I ...
0
votes
1answer
168 views
Create and display a ListView of the ZXing ProductDatabase
I created an app for scanning barcodes and QR code using the ZXing library. I also implemented a database that stores the scanned products. I need to implement a listview to display the stored ...
-2
votes
1answer
153 views
what is the diffrence between Cursors and baseadapter?
what is the diffrence between
Cursors and base adapter spically when i wanna use them to show object in list ?
0
votes
1answer
451 views
Spinner with custom cursor adapter and “empty” selection
i have cursor which selects records from my CarProfile table and use custom adapter to show
brand, model and the linenceplate in the spinner selection. my problem is that i want to have selection ...
0
votes
2answers
1k views
Displaying data from a SQLiteDatabase with adapter
Code for the DBHelper class:
class DBHelper extends SQLiteOpenHelper {
private static final String DATABASE_PATH = Environment.getDataDirectory()
+ "/data/test.data/databases/";
...
1
vote
1answer
107 views
I can't reading SQLite Database by cursor. It is always crashing
Why does this code crash?
CustomDatabaseHelper.java:
public class CustomDatabaseHelper {
SQLiteDatabase db;
private static final String DATABASE_TABLE = "tbl_homework";
public static final String ...
1
vote
1answer
208 views
Where to close the cursor , when using an adapter and an asynctask?
I am using AsyncTask to retrieve some information from a database.
Hence inside the doInBackground method, I write the following code:
dbhandler = new DbHandler(TestActivity.this);
db = ...
0
votes
0answers
516 views
Android - SQLite adapter for large database (~8000 lines)
What is the best method for writing a custom adapter for a large database? The database in question is a media library which I have scanned in from user-selected sources. My goal is to cache media ...
0
votes
0answers
630 views
Access closed cursor in SimpleCursorAdapter
I found on the Internet a code to sort a ListView in alphabetical order, as the Android Contacts.
It worked perfectly, but when I implement a search filter, my cursor is closed. How to implement this ...
1
vote
3answers
203 views
Different layout for the items in the listview
I have some extended cursor adapter, in witch I call super with the context and the resource layout for the item in the list, something like this.
call to super in my adapter:
super(activity, ...
0
votes
1answer
176 views
Android ListView clears when starting an external Application
In my Android Application I'm using a ListView to get to the specific View which shows additional information and functions.
Everything is working good but when i start the Phonecall function or open ...
0
votes
1answer
672 views
How to update listview using cursor while user enters text
I'm totally stumped! I've been searching for ages, but can't find a solution. I have a feeling it is going to be really easy though!
Anway, I have a listview which is bound to a cursor, and every ...
0
votes
2answers
537 views
Listview bound with Cursor adapter - how to add default first entry
What is the common way to add a first default item to the listview, which takes it's data from a CursorAdapter? I would like to have a listview with items where the first entry is something like "Add ...
0
votes
2answers
892 views
Implementing a CursorAdapter to get DB rowID's of ListItems in a ListView
well i'm almost doubting myself (or at least my intellect) while trying to implement a CursorAdapter
in my Android App. I read different tutorials and tried out different things but it won't work! :-(
...
0
votes
1answer
184 views
Android attach new data without smashing the old one with an adapter
My problem is the next:
i have one way to bind data <-> View that is ... using an adapter, that simply inflates one specific layoyt and binds the column names to a ids in layout for each row in ...
0
votes
1answer
453 views
ListView clickEvent Selects Wrong DB Row ID - Help!
I have a ListView that populates data from a DB into a complex-ListView. A string in the 'gotoURL' column of the db is a URL to load a link into a WebView using the putExtra intent. When I click on a ...
1
vote
1answer
1k views
GridView with images from DataBase
I have images in my DB and I put it to my GridView by this code:
public void setNotes()
{
String[] columns = {NotesDbAdapt.KEY_ID, NotesDbAdapt.KEY_IMG, NotesDbAdapt.KEY_NAME, ...
3
votes
2answers
2k views
Cursor and Adapter
can someone see what I have wrong with my cursor: The data from the db is not returned (at least the screen is blank). I think that is my problem. In the DDMS shows it opens & closes the db. I ...
0
votes
1answer
346 views
isEnabled for separators with simpleCursorAdapter?
I have a listview that is populated with a simplecursoradapter that I overrode. I have a query that returns a cursor that is a bunch of items and their separators in the proper order that I need them ...
0
votes
2answers
1k views
Android: Custom Cursor Adapter Trouble
I am wondering if someone may be able to point me in the right direction or lend a pair of eyes and see where I am going wrong with my custom cursor adapter class for a listview.
Basically, I had it ...
0
votes
1answer
435 views
Trying to use a listview in .xml with a cursor but without a ListActivity
I'm stumped as to how to properly implement an adapter that can pull a column of data from my sqlite database and add it to a listview (based on the android-provided multiple checkbox). All of the ...
2
votes
2answers
986 views
Android: modify data from Content Provider before use in ListView
I am querying the ContactsContract.Data table in Android using a ListView to display the data.
Is there a way to modify the data returned from the Content Provider before it gets displayed?
Here is ...
0
votes
2answers
427 views
Query with 2 linked tables and 1 aggregate function (SUM) can't be used without adapter ?? (to be used in a listView)
I need to do a query with 2 linked tables and 1 aggregate function.
In my case, the query is working fine but it seems that it can't be used with an adapter (because of the aggregate function).
This ...
0
votes
1answer
1k views
Android: Using data from a multiple-column ArrayList in a ListView
Currently I am displaying data from an SQLite database in a multiple-column ListView. However, I would like to use calculated columns in my data involving more complicated mathematical functions than ...
2
votes
0answers
761 views
Cursor adapter in android Fill wrong image when scroll the list
I have problem with cursor adapter, i have custom adapter in which there is image,text,check box, all works fine but as an when i scroll list with 30 item some images disarrange and text show fine.
...
0
votes
2answers
1k views
Android adapter with section headings: performance problems
I have a custom adapter to display a list of items with section headings. I've looked at Jeff Sharkey's SeparatedListAdapter and CommonsWare's MergeAdapter as examples of how to achieve this, and I ...
0
votes
1answer
321 views
How to deal with CursorAdapter and switching Contacts API?
Does anyone tried to use CursorAdapter with old and new api?
Do you have some code examples of such solutions?
0
votes
2answers
1k views
android expandableListView - add items to a specific group at run time
i met a problem , i have a expandableListView has 5 groups
if i wanna add some items to the second group , and update the expandableListView at run time,
could someone teach me how to do that?
0
votes
1answer
531 views
Android Beginner: Adapter for simple view or direct DB query?
First off I'm really new to android (< 4 days).
I'm trying to wrap my head around how database data is linked to Views and widgets.
I've done a few tutorials and I've noticed that Adapters are ...
2
votes
4answers
1k views
Custom list cursor adaptor crashes at bindView on emulator — not on phone
Hi all
I will try to be specific if I can - please be patient, first time asker and relatively new to programming on this platform. Apologies if this has been asked/answered before - please link it to ...

