Tagged Questions
-2
votes
0answers
13 views
How load data from sqlite database to ListView? [closed]
Im trying load data from SQLite data base to ListView. But shows error. Which way i can load?
-1
votes
2answers
109 views
Android retrieve image from sqlite and pass it to next activity through listview item
Thanks in advance. I sucess to pass data from list view to next activity but now i need to add an image from my database to listview and then pass it to the next activity. Or if it's easeiest just ...
0
votes
0answers
36 views
Getting the same row in listview from sqlite
When i get the users from my sqlite database and send it to listview i get only the last user duplicated the amout of users i have. I dont know why , this is bugging me for some time now.
I am sure ...
0
votes
0answers
86 views
Android how to insert image to a listview item from sqlite database and pass it into next activity [duplicate]
I sucess to pass data from list view to next activity but now i need to add an image from my database to listview and then pass it to the next activity. Or if it's easeiest just pass the image to the ...
0
votes
1answer
72 views
Android: delete SQLite item from listview. NullPointerException
I'm pretty new to android (and programming) so I hope this question isn't too stupid. I've tried to answer my question through tutorials and by searching through stackoverflow without success.
I'm ...
0
votes
1answer
104 views
Android how to pass data related to a listview item from sqlite database into next activity
i need to pass data from database to the next activity which this data is in the same row as the selected item. I have tried to do it but, it shows all data in the listview. I need to show the title ...
0
votes
1answer
39 views
CursorLoader not populating ListView [HELP]
My app uses a cursorloader to populate sqlite data into a ListView. Actually, the cursorloader should only populate one column (COLUNM_NAME_SITE) from the DB into the listview. The issue I have is ...
0
votes
1answer
43 views
List view is not populating with database when first time activity start
I am using SQlite Database.I create 2 tables and populate them(working fine) and use there data to show in list view. when first time list adapter is populating list view show newDATA varibale as ...
0
votes
0answers
92 views
Android - listview context menu
I'm having trouble understanding how to deal with 'onContextItemSelected' part.
My listview displays data from my SQL database and the context menu comes up fine on long press, and the contextmenu ...
0
votes
0answers
43 views
How to relate db entries with listview items
I'll explain shortly what I am trying to do. I have a custom listView which is filled in with the data from SQLite database. Once a list item is longclicked, it is added to favourites: I have a ...
2
votes
0answers
71 views
Out of memory exception on SQLite database operation [closed]
I have a custom listview where each list item has 5 entries and these entries come from SQLite
database. There are such 8 list-items in this listview. My code for custom adapter is:
public class ...
0
votes
2answers
81 views
Limit number of items in ListView from Adapter
I currently am using a SimpleCursorAdapter with a ListView that pulls items using a CursorLoader from a ContentProvider and SQlite DB. The database contains around 300 items and I want to limit the ...
0
votes
2answers
25 views
Storing the selection from a SQLite filled listview as a string
In my android app, I have a normal few listview using String [] but I have one listview from an SQLite database. It shows it fine, that isn't the issue. The issue is logging which option I have press, ...
0
votes
1answer
210 views
how to save image taken from camera and show it to listview - crashes with “IllegalStateException”
I am confused about how to do this..
For database I use:
public void insertImage(byte[] bytes) {
ContentValues cv = new ContentValues();
cv.put("imageblob", bytes);
...
0
votes
2answers
117 views
deleting an item from listview (using sqlite) results in only removing it from listview.Can't delete it from database
When I try to delete an item in list view ,it removes it from list view but when I add a new item or run the application again the items is still there.I can't delete it from database.
I am using ...
0
votes
2answers
223 views
Updating ListView with texts from EditText through SQLite Database
I want to make a Comment bar(an EditText) ,where one's comment will be added to SQLite DB and the comment will be shown in a ListView . I tried doing that but i ended up with a crashing application . ...
0
votes
0answers
51 views
How do I display database fields on listView?
I have an Object that represents Destinations, the values comes from an input form on a fragment. What I want is to store those values in SQLite Database table, and display each row from the table on ...
0
votes
0answers
36 views
How to store data into database in a customadapter?
I want to store values of textviews into a database in my adapter class , but the problem is that if I do store values in the getView function then it is store three times and if I create a new ...
0
votes
3answers
151 views
ListView doesn't show android sqlite items
I have a problem with showing data items from sqlite database with ListView.
When i try to see the data after click button, it shows:
com.LocationReminder and Task@4053afb0
It's weird.
This is ...
0
votes
1answer
66 views
ArrayList not displaying to ListView
So I have a SQLite database, and an ArrayList and I'm using the following code to pull values and store them into another ArrayList
the error I'm getting is an NPE Null Pointer Exception to this ...
0
votes
2answers
175 views
Listview Adapter with SQLite Query's
I have a quick performance question; I have a ListView adapter which populates the listview and I open my sqlite database and close it at the end of populating the view and I populate some information ...
0
votes
1answer
124 views
Android - How to save data with setOnCheckedChangeListener in Custom Base Adapter
I need to save the the item in a listview when the user changes the check box.
I have a custom base adapter with a view holder for my list item.
I can set the object status to true and false ...
0
votes
2answers
264 views
reading data from sqlite database and adding to list view through hashmap
i want to read the 'empname' and 'place' from sqlite database and list into a listview
i tried the given code, but the code shows error like 'unreachable code' can any one help me to find out the ...
0
votes
2answers
133 views
Android:ListView not displaying items when power button locks the screen during AsyncTask
I have a Async Task that creates a HashMap to create a Adapter to populate ListView. I have a progress dialog that shows during doInBackground method.In onPostExecute() method, I dismiss the progress ...
0
votes
2answers
100 views
Deleting items on listview together with the database [ANDROID]
I have have checked every problem here in relation to my own. The codes are totally different in the one i'm using IMHO. I have coded everything up to this point. I've read that in deleting the data ...
1
vote
1answer
73 views
Multiple Tables in sqlite ERROR
I am trying to insert data to a listview which is in A.class
the data will be coming from an edit text from B.class
I have 2 Tables
Here are my codes
This is my DbAdapter
public class SQLiteAdapter ...
1
vote
1answer
57 views
Sqlite Listview clears up when back pressed
here is the logcat. what seems to be the error here?
03-07 03:11:55.841: D/dalvikvm(292): GC_EXTERNAL_ALLOC freed 4085 objects / 243720 bytes in 190ms
03-07 03:11:56.221: D/dalvikvm(292): ...
0
votes
0answers
251 views
Listview with checkbox is not selecting multiple list items
I am in the requirement of creating a listview which will contain a checkbox to select an item and an edittext to enter the quantity to order.
I have already generated the listview, it looks like ...
0
votes
2answers
347 views
Android :Listview is not populating a data fetched from database
I am trying to populate a listview by fetching data from SQLite using cursor. But every time application closes abruptly showing "Unfortunately stopped "
Here is that simple code:
public class ...
0
votes
1answer
295 views
Displaying SQLite records in ListView
I have problem with tutorial. I'm beginner in Android development and my app using SQlite. This is code snippet which is responsible for displaying records from database in ListView.
public void ...
0
votes
1answer
31 views
how to disable other items in listview
I have a list view, this setup is like the guess that logo game where you can't proceed with the next level until you finish the level before that. I have been searching all night already, I found ...
0
votes
3answers
129 views
Android OnItemClickListener long id parameter is not giving field id
I have generated a list of customers. On click this should open edit view to edit the customer. Here the parameter should pass the _id of the row according to stored in the database. But everytime ...
0
votes
2answers
73 views
How to order sqlite table according to accending integer?
I am having some problems with ORDER BY in android sqlite.
I am using this query to reorder my listview :
Select * From tbl_name ORDER BY WithOrder asc
Where WithOrder is an Integer type column. ...
0
votes
1answer
171 views
database value can't show in ListView
i am create simple database and value of database i show to ListView, but my ListView Can't show my database value
this is my code for create database
public class MyDb extends SQLiteOpenHelper {
...
0
votes
0answers
63 views
OnItemClickListener not working with ListView adapter
please help me to reslove the problem
i've a listview and i need to bind data from my database.
also when i click an item in the listview,i need to display item's description
this is my main page ...
1
vote
0answers
226 views
how to Get data from SQLite database to intent through “onItemClick” on item in ListView Android
I apologize in advance,
I am from Indonesia, so my English may not be good ..
I just translate me through google translate
I'm making a android app associated with sqlite.
the problem I have, I want ...
0
votes
1answer
51 views
Strikethrough not saving for the items in Android
I'm developing simple shopping list application for android.
As I'm able to strikethrough & unstrike the items in the list view. But after opening back the closed application I'm unable to get ...
0
votes
2answers
77 views
Error in displaying an image in a listview
I have an image resource ID in an SQLite database and I would like to display this image in a list view. I have created a row template but the default image is displayed in the list. How do I update ...
1
vote
1answer
79 views
OnitemClickListener not working
i want OnitemClickListener for a listview but it doesnot work for me.it give Logcat error that.
** Your content must have a listview whose id attribute is R.id.list**
and my application do not ...
1
vote
1answer
158 views
Hide column in listview android
I had about 20 columns input into listview. But I want that user will have option to disable (hide) some columns in view. I found that i can make my own Array Adapter and view for row. But i dont want ...
0
votes
2answers
248 views
Android, correct way to retrieve data from sqlite and display in a custom list
EDIT: ((ArrayAdapter) getListAdapter()).notifyDataSetChanged(); doesn't work - I think it's an issue to do with me refreshing the entire list instead of just adding new entries but am unsure - if so ...
0
votes
0answers
89 views
populate listview with image taken by sqlite field
I have a sqlite table that have a field that store the name of image
image1.jpg
This images are physically stored to mnt/sdcard/DCIM/Camera
I want to populate a listview that read the field in ...
0
votes
1answer
319 views
Retrieving data from a SQLite database and displaying it on the ListView
I already search over the internet and I don't understand what I need to do to display data from the database to a ListView. They have tutorials but I don't quite get it.
Here is my database handler ...
-1
votes
2answers
183 views
Passing data from SQLite database using Intent
In my app I have an SQLite database and I want to know how to transfer some of the data such as id, title etc to another activity.
This is my code so far:
ListView lv = getListView();
...
0
votes
3answers
107 views
SQLiteDatabase update not working?
I am trying to get db.update to update one of the rows of my database with new values but it does not seem to be saving. I have looked over my syntax but I cannot seem to get the data to save. The ...
0
votes
0answers
88 views
How I can create a Table in SQLite with a dynamic Tablename and show this in my ListView?
hi i have a problem with my android application. To my Program: I have a application with many activities and I use a ListView and the SQLite Database. If I click on a value in my ListView I start a ...
0
votes
7answers
85 views
How I can use the onItemClick in my android application?
hi I have a problem with the onItemClick in my android application. i try it but i get a error. I want that I get data from sqlite database in my listview and can click on a value in this list to ...
1
vote
2answers
93 views
How I can use onListItem to start a new activity with the ListView Value?
Hi I have a android application and i use a sqlite database and a listview in my Activity.
Now I want to use onListItemClick but I don_t know how I can get the value that I click and open a new ...
0
votes
1answer
247 views
How I can fill my ListView with Records my by SQLite Database in Android?
I have a android application and I use two activitys. The first can create a record in the sqlite database and the second show this records in a listview. The Problem is now to show my records in the ...
1
vote
1answer
805 views
ANDROID: Delete multiple selected items in ListView
I have a list view that displays records from a database. Each row in the listview has a checkbox. How do I...
Create a toast message displaying the value of the selected item?
Identify the records ...




