1
vote
1answer
16 views

Searching through listview populated from a database

I am very new to android so this might sound stupid. I have a listview populated from a databse. I want to search through it and display the items in the list as the user types in the searchbox. Found ...
0
votes
1answer
18 views

RunTimeException error

Pls can someone tell my why am having this error?.. i've checked and rechecked my code and everything seems ok to me. but i don't know why when i run it, it gives me this error ...
0
votes
1answer
17 views

Get text content in EditText ListView after click button issue

I have a Listview of EditText and I need to get the String values of each edited row when I click a confirm button, but I don't know how. I have tried to adapt some sample with no success ( I get ...
0
votes
3answers
47 views

Use of ViewHolder is giving unusual output

I'm using custom list view in which each row contains two image view and a text view. I'm using view holder in getView() method of custom adapter. I've set Onclicklistener() on one of the image view ...
1
vote
2answers
31 views

How to make listView say one thing, but pass through different data

So this question is a little hard to explain, but basically what i want is to have an array list for a listview, but change the title on the listview. So that when the user sees the listview it says ...
0
votes
3answers
29 views

ListView not appearing / Android Layouts

I have a textView, editText, and listView. I would like to order the textView and editText next to each other, hence the LinearLayout. Additionally, create a listView under them. Here's the XML. ...
1
vote
0answers
78 views

Set visibility doesn't work

In my app I have a listView and i want to filter it. The list page starts with variable filter.equalsIgnoreCase("") so the list shows everything, if !filter.equalsIgnoreCase("") the list is filtered. ...
0
votes
0answers
44 views

How to refresh a listview in android using asynctask?

There are two Activities. The first Activity is having the list view to see what is being shared and the second activity has an edit text box (to input inorder to share) and a button. On clicking the ...
1
vote
1answer
22 views

how to disable the onKeyDown effect of a Dpad button in android, i m not using Listacivity.?

I Wrote some code in OnKeyUp event handler, but some by default action of OnKeyDown is taking place whenever i m pressing any button, so i want to disable that action. Plz give me some suggestions..
0
votes
1answer
53 views

Change single ListView item

I'm stuck on changing a single row in a populated ListView for several days now and tried lots of (java) solutions found on here as well on xamarin but as a student I see often solutions posted ...
1
vote
1answer
21 views

SAX Parsing doesn't fill ListView

I'm sorry for my bad english firstly. Here is my goal; I need to read xml (actually from web service but there are some problem with my host and i use direct xml link, as my web services return ...
0
votes
0answers
34 views

how to collect json with same value in one view and others in another view and make a dynamic view

i have json as bellow : { "transaksi": { "jenis_link": "unit_link", "rks_ulink": [ { "lji_invest": "Excellink Dynamic Fund", "tgl": ...
0
votes
1answer
25 views

Find clicked row in listview and get data

I am using custom adapter to show the items in my ArrayList. Each row item has 2 textViews and an image button. Depending on the status of an attribute, image on the image button is changing. Although ...
0
votes
1answer
27 views

Adding Delete button to a data binding ListView

I'm new to Android! I've created a ListView and bind it to an adaptor to display data from a table. It works great. I can select on a row and it display the product name that I'm selecting. Now ...
0
votes
1answer
13 views

CursorLoader change cursor() doesn't refresh listview

I use approach resuest to server - listView - content provider in many projects and it works well. However I faced with really strange issue - notifyChange(uri, null) doesn't refresh data in listview ...
1
vote
1answer
24 views

Changing the blue onClick indicator of a ListView

In my app I have a list view. I dont get how to custom the native onClick indicator. when I press on a view every thing with alpha component is showing a blue onPress mark. if the view don't have an ...
0
votes
1answer
22 views

ListView data not showing in fragment

Here's the code that's producing unexpected results. If anyone can please guide me to what I'm doing wrong here public static class LaunchpadSectionFragment extends Fragment { @Override ...
1
vote
2answers
42 views

Getting values from dynamic listview

So im getting values via json JSONObject json = new JSONObject(result); if(json.has("message")) { message = json.getString("message"); } else { for (int i ...
0
votes
2answers
40 views

How to use ArrayLists in ListAdapter (ListView)?

) I found a tutorial about using the ListView in android. But I have a question about it. Here the tutorial: http://www.vogella.com/articles/AndroidListView/article.html#listadvanced_interactive ...
0
votes
1answer
18 views

Modify Listview adapter rows when switch is on or off

I have ListView with row as TextView and Switch. Now I want that When I click on First Item Switch i.e. when I on the Switch(position==0) Then all Rows below that are Visible else When I make First ...
0
votes
3answers
50 views

How to display the imageview and textview using listview without baseadapter in android?

i want to display the imageview and textview using listview .But without using base adapter in listview.is this possible using ArrayAdapter? final String[] menuitems = new String[] { ...
0
votes
1answer
26 views

Android get ListView sub item from another sub item

I'm using this way to make my ListView item's dropdown menu. Here's my item's XML <RelativeLayout ...> <TableLayout ...> <Something like TextView, ImageView... /> ...
-1
votes
1answer
50 views

IndexOutOfBoundException in my adapter when trying to match two different data set

I wanted to put two different data into my listview from adapter. Two set of data are from different class. The LikeList consist thousand of data, while NewsData only consist 50 data like that. ...
0
votes
1answer
20 views

Unsupported operation exception when trying to getBlob from cursor

Here is my SimpleCursorAdapter extension class which I use trying to display information about contacts in a ListView: private class CustomContactsAdapter extends SimpleCursorAdapter { ...
0
votes
1answer
49 views

On scroll add more json data in listView

I made one ListView with image and text. I am able to parse json data in the ListView. But my requirenment is to load 10 rows of Json data, then at the bottom have a load more. to get the next 10, ...
0
votes
4answers
38 views

How to connect an android app to a remote database?

I've been doing my own research but to no avail. I am doing an android app which contains listviews and it needs to query data from a remote database. I would really appreciate it if someone could ...
0
votes
1answer
34 views

ListView with header inside a horizontal scroll

I have a ListView that I load data into it from a data table with about 10 columns, so I need the user to be able to scroll horizontally to see all the data. Now I want to put Columns on top of the ...
0
votes
1answer
27 views

listview row content getting duplicated in android widget

I have a collection view widget i.e a listview to show data fetched from DB. I have implemented the getViewAt(int position) method in RemoteViewsServiceFactory. This method is getting called as per ...
0
votes
1answer
24 views

Trouble identifying an Error (array to listview)

I have a bit of a problem that I have now spent 2 weeks trying to solve. I will try to be as detailed as possible, but if something is unclear, please ask. I'm working on a bluetooth chat application. ...
0
votes
3answers
37 views

ListView doesn't refresh

I have a Custom ListView that contains some Views. when I click on one ImageView that's called 'deleteRow', the Selected Item should be removed from the Database and also from my ListView, I have ...
0
votes
3answers
23 views

Android SDK - Java - listview.setAdapter fails

I have the below sourcecode running perfectly. It doesn't do much, but it runs i can point, click and fiddle around. As soon as i uncomment: listview.setAdapter(adapter); All hell brakes loose and ...
0
votes
1answer
66 views

Adding new items to ListView: Can't modify the content

EDIT: I think the post is becoming into a mess with all these edits. I' going to trying to explain the problem from the beginning. I have an activity with a ListView and a button to add new items. ...
0
votes
1answer
19 views

Removing alpha channel from ListView ConvertView

I am using a ListView with my own BaseAdapter to render a list of items. It is possible to highlist an item. When I do that, I set the background in the BaseAdapter like this: if (position == ...
0
votes
0answers
16 views

Touch and swipe for overlapping views

I'm trying to reproduce Gmail's behavior in e-mails main list, the user can: click on a listview's row to display the e-mail swipe a listview's row to perform some action on this e-mail. For that, ...
0
votes
1answer
28 views

scroll smoothly to the specific position

I have a listview which contains large no of datas,but here the problem is, it is not scrolling to the top most.Listview is updating,and the listview size is increasing.but when i need to scroll to ...
0
votes
0answers
13 views

Update ListView with adapter (notifyDataSetChanged) - Performance

I want to update a list if the number picker changes. My problem is, that if i scroll the number picker it looks a bit irregular and not smooth... Therefore I use the following solution in the moment: ...
0
votes
3answers
37 views

Android Listview display multiple items per screen

I've created a simple app that sends a search term to a php script, reads the json response generated by that php script based on the search term, processes the json response and loads the json nodes ...
-4
votes
0answers
29 views

Android listview and spinner how to do?

I'm doing an Android App with a list of TV series and who there's a Listview. When I click for example in "How i meet your mother" the item goes to an other Activity who see the Synopsis and a Button ...
0
votes
5answers
47 views

Add a button in bottom of listview when the listview is empty (using ListActivity)

I using extends ListActivity to show the empty message when the list are empty. Below is my xml file: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
-8
votes
1answer
41 views

How to put an item of a ListView on the top of the screen [closed]

I have a simple activity with a ListView. In this ListView I put only one item but when I execute the activity in the emulator the item is in the centre of the screen. How can I put it at the top of ...
1
vote
2answers
28 views

Android : How to identify button click in a Listview having more than one button

My custom Listview has more than one button, how can I identify which button has been clicked ? I want to do different things on action of different buttons.
0
votes
0answers
23 views

Header of AmazingListView not getting touch events

I am adding a header to an AmazingListView (using the latest code): mAmazingListView.setPinnedHeaderView(headerView); headerView contains elements that a user should be able to interact with ...
1
vote
3answers
51 views

JSON to ListView in Android with Gson

I'm trying to put a json result in a ListView in my Android app. This is my Json: [ { "Result": "8:30,21", "Meeting": "Antwerp Olympics", "Event": "3000m", ...
0
votes
1answer
44 views

Listview go to main when i click in item

I have an app that has a ListView and when I click on some item, it adds the item in an array. But when I click on some item I don't want change the view, then in Android 4.0 the ListViewgoing to ...
1
vote
2answers
35 views

On a ListView item's child click

I have a ListView where each of its items is composed from some ImageViews and TextViews, i want that when i click on a specefic ImageView, some code will be executed, where should i put this code is ...
0
votes
1answer
24 views

Change an icon in an Android ListView entry when pressed

I am currently trying to implement a ListView in Android that features rows with an icon and a describing text. When the user presses a row, the background color should change and the icon should be ...
0
votes
1answer
23 views

Set ImageView on a ListView with ViewBinder depending on RatingBar value

I have in my MainActivity a ListView which shows a list of movies that i'm populating with a SimpleCursorAdapter. In another activity the user is able to set the rating with a RatingBar and the float ...
0
votes
1answer
20 views

How to Search iteams in alphabetically in Listview through Base Adapter

I want to search iteams from list view alphabetically on click on edittext i am not getting how to do this serch_item.addTextChangedListener(new TextWatcher() { @Override ...
0
votes
2answers
38 views

How to pass exactly selected listview row text in android?

I have a ListView which manipulates 10 row. Each row has two TextView. If I select a row, I want to know the current TextView text. I know that getView() method call multiple times. For this reason I ...
0
votes
1answer
22 views

Android listview with inflated checkboxes not checking all true at once

I am retrieving contacts and displayed it in listview using simpleCursorAdapter. listView is displayed in main.xml and my textview and checkboxes are in listview.xml. My main.xml also have 2 buttons, ...

1 2 3 4 5 180