A ListActivity is an Activity (main UI component of the Android System) that displays a list of items by binding to a data source such as an array or Cursor, and exposes event handlers when the user selects an item.

learn more… | top users | synonyms

0
votes
0answers
21 views

onActivityResult in ListActivity is not raised but in the MainActivity

I am developing with monodroid. I am calling a subactivity (extend listactivity) from main activity (extend activity). This subactivity should take few entries in a listview. Every entry has a ...
1
vote
1answer
33 views

Calling a DialogFragment from a ListActivity

I have an android application with a main activity extending a listactivity. public class Main_activity extends ListActivity {...} Out of the options menu, I want to send a part of the items via ...
0
votes
0answers
22 views

android.view.WindowManager$BadTokenException - ProgressDialog error with Group activity

I'm learning about how to use GroupActivity to create activities in a tab and apply in my project. Everything seem ok until I add new progress dialog to download data from internet ... I used this ...
0
votes
1answer
50 views

Open new activity using intent on FragmentPagerAdapter

i want open new activity (List Activity) List.java under Tile Strip how to use intent on the onCreateView OR How To add List On the onCreateView main.java is Sample for Swipe View and Tile Strip ...
0
votes
1answer
35 views

onItemClick and onItemLongClick not firing in ListView until an item has been pressed once

In my ListView I have these two methods, and they DO work, but not until one of the list items have been pressed once. So, nothing happens the first time I press/hold an item, but the next time I ...
0
votes
0answers
33 views

getLoaderManager: in an activity

I am writing an app for a WIMMOne watch: no orientation changes, a small simple screen, and Android version 7. I got my first Android APP running, but based on a book, it had a fragment. But ...
0
votes
1answer
45 views

Unable to get onListItemClick functioning for a row in a ListActivity

I would like to get a click anywhere on the row of my ListActivity to proceed to another Activity. Currently, i am able to see the row position in a log when the ImageView is clicked, but the click ...
0
votes
2answers
28 views

ListActivity force closes

Whenever a button opens up the About class, the app just force closes. I've followed a video tutorial exactly, so it shouldn't be any errors. So I basically want to have a list that have three items ...
0
votes
3answers
58 views

how can I make two listviews fetching from two sqlite tables in one activity in Android

I have one activity in which I need to display two lists that fetch from two sqlite tables. for every list, I am writing a customCursorAdapter Can anyone guide me to a useful example, or just how to ...
0
votes
1answer
110 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
5answers
56 views

Launching an activity from the ListView

public class ListItem { public int sname; public int s_img; public String sid; } Class xyz extends ListActivity { . . . protected void onListItemClick(ListView l, View v, int position, long id) ...
0
votes
1answer
42 views

Android Button Tag and Onclick listener in listview get reset when scrolling

I am populating a listview with an imageButton that when clicked, starts playing an audio file. I set the datasource of the MediaPlayer from the ImageButton.setTag("resource url") while ...
1
vote
2answers
35 views

how to launch ListActivity using an intent?

public class ListPage extends ListActivity { ListView months; ArrayAdapter my; String[] monthlist = {"jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sept", "oct", "nov", "dec"}; protected ...
0
votes
2answers
36 views

The items in a ListActivity repeat themselves

In picture one, after selecting one item in the List, saying History, a new activity starts. Please see picture two. In picture two, after clicking going back to the List, The items in List repeat ...
0
votes
3answers
64 views

How to extend ListActivity class and Fragment class with my Mainclass?

I am new to android and in desperate need of help. I have successfully created a ListView with images.My task is when I click on any list item its description should appear on the right hand side of ...
0
votes
0answers
137 views

Android Fragment - SlidingMenu - ListActivity

So I have the slidingmenu(jfeinstein10) library added to my project and the menu working. The problem I have run into is based on my app extends ListActivity. I have seen a couple questions about ...
0
votes
3answers
58 views

Click on item in android ListActivity not working

I have ListActivity with custom ArrayAdapter and following layout for list items: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
0answers
53 views

Why does my ListView not display the list of items?

I am trying to display my list of alarms in the ListActivity but it does not work. There rows appear but there is no text visible. I'm not sure if it's retrieving the data from the HashMap and ...
1
vote
2answers
22 views

Unable to instantiate PlayersActivity NullPointerException error

My PlayersActivity class was working fine until today when it mysteriously stopped. I think I have a problem with my listview but I can't quite figure it out as I have really changed anything although ...
0
votes
0answers
5 views

I have a listActivity i want to apply some style to it i am currently using default layout provided by the android adt

setListAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, testList)); this is the list adapter which i am using to display the content in listActivity with style
0
votes
1answer
33 views

Android - How to implement getListItemClick() in this case?

When I click on an item from the list, I want a TextView inside it to change visibility from "gone" to "visible" and display the item position that was clicked. This should be done without the ...
0
votes
1answer
53 views

Android onListItemClick() appears to be acting upon more than one list item

I have a ListActivity. My onListItemClick() method is expected to update a TextView inside the clicked item with the value of the clicked position (e.g. if I click the third item, it appears "Clicked ...
0
votes
1answer
61 views

Multiple line ListAdapter, using ListActivity

I've run in to a problem with my Android application. What I'm trying to do is parsing data from a JSON API and then put the gathered data into a multiple line list using ListActivity. However, I cant ...
0
votes
3answers
85 views

How to keep the selected item highlighted in ListActivity

I create a class RecordActivity derived from ListActivity class, and set the choice mode and selector for the ListView defined in the .xml. The default behavior is the selected item will be ...
0
votes
0answers
47 views

onListItemClick never gets called when using ClickableSpan in ListView Item

I apologize if this question has been answered somewhere, but I couldn't find anything that solves this problem. I have quite a long code that extends ListActivity. In the CustomAdapter, when getView ...
0
votes
1answer
47 views

Can't start Activity from ListActivity

I don't know what's wrong with this code. My app crashes when I run it. Here's the code: package com.example.smsTest; import java.util.List; import android.app.ListActivity; import ...
0
votes
1answer
104 views

OnClickListner() for Button in ListActivity header is not working

In my application, i have a layout which displays bus-stop details in the header of ListActivity while displays all available arrival predictions as a list. List header contains two buttons, first for ...
-4
votes
1answer
88 views

How to convert ListActivity to ListFragment [closed]

i want to convert this page to listFragment not ListActivity How?? this is the code : http://i.imgur.com/sOhEh4o.png Please help me !!!
1
vote
1answer
83 views

Android list - edittext in header of list

I have a List in Monodroid which has a header with an EditText. The problem is that EditText not getting focus properly. Here is how it works: If you touch the EditText, the keyboard comes up ...
0
votes
2answers
42 views

ListView cannot be found while running code. Says ListActivity must have a ListView attribute with id android.R.id.list

I have the listview defined and linked correctly with the id of the listview in the layout xml file. Still I am getting the said error. I researched over the similar questions posted here but to no ...
0
votes
1answer
126 views

Removing List Item and then querying database throws exception

I've converted a list project from a BaseAdapter to an ArrayAdapter ListActivity because I was told in another question that ArrayAdapter was more dynamic and better at, specifically, allowing an item ...
-1
votes
1answer
300 views

checkbox-listview-listadapter -multiple inheritance in android application [Eclipse]

Hello brilliant guys ,, I'm using the following code to display a list view from a data base , i want each item to be selected individually and then i want to get a certain value from each item (has ...
0
votes
0answers
54 views

Android ListActivity displayed as Dialog - onListItemClick is not called

I have a ListActivity class called VerificationListActivity which displays a list of items. It is important the list activity to be displayed as a Dialog. I've set in the manifest file the following: ...
0
votes
1answer
163 views

android listactivity

I am trying to create "ListActivity" but I unable to see the output as list. I used the people code. Moreover, I didn't got any error in below code. Please help regarding this issue. package ...
0
votes
1answer
77 views

ListActivity taking forever, application gives a blank screen

I am building an alarm application. A part of the application scans the internal and external memory of the device once a button is clicked, and then displays a ListView displaying all the audio files ...
1
vote
1answer
62 views

ListActivity not started unless I leave the app and come back

Have an Android app that is working fine on Android 2.3.6 devices and all 4.x virtual devices. However I've gotten reports from a user that on several devices running 4.0.4 - 4.1.1 one activity ...
0
votes
1answer
40 views

How to create an editable directory in Android

I want to create a new activity called "Custom Directory". That activity will have a heading called "Directory" With the following list format: Name Number Name Number Name Number And ...
0
votes
1answer
74 views

Should I extend ListActivity ? (already working well without it so far)

I am working on an app whose purpose is to display a listview with some content from a database. So I have an activity called ResultListViewActivity (extending something else than ListActivity!), in ...
0
votes
0answers
66 views

Extend two different classes?

In my application, one of my activities has as main purpose to display a listview and to allow each item to be clickable. So far, this activity extends a class called BaseActivity, which is a class ...
1
vote
2answers
244 views

Populate listview from arraylist of objects

I have a listactivity which will display a list of persons name and address with data from arraylist of objects. here's the method to fill the listview so far.. private void ...
0
votes
2answers
84 views

android custom listactivity arrayadapter

I'm trying to wrap my head around how to implement a custom arrayadapter to provide items for a list activity and then display that selected item in a new activity. For example, i'm pulling a list ...
2
votes
0answers
93 views

AutoCompleteTextView suggestion is not popping

I am adding the View to the Header of ListView in the ListActivity, after inflating which has AutoCompleteTextView and not showing the suggestions on entering text. Though it works absolutely fine in ...
1
vote
1answer
151 views

Custom layout for a list activity Android

I know there is a lot of similiar questions, but I didn't find the answer that would help me, so this is my question. I have managed to do this: But what I want is this: So I want a fixed button ...
1
vote
2answers
108 views

How to replace Fragment from Activity Above FragmentActivity

I need assistance problem solving. Not necessarily looking for code, though that wouldn't be rejected! I have a central FragmentActivity housing a FrameLayout that I use to swap Fragments as the ...
0
votes
0answers
45 views

when click the listview item appears “muthy.skripsi.mtg.DFT_ALAM @ 44f0fc10”

My listview displays the data retrieved from the database. I would like if one item is selected, it appears the string of the selected item. but it appears instead as muthy.skripsi.DFT_ALAM@44f0fc10 ...
0
votes
1answer
123 views

List scrolling lag

My app is a list activity which contain 26 rows , each include image and text , every thing run fine but scrolling of list show some lag , its not smooth espically when scroll it fast as smooth as in ...
0
votes
1answer
101 views

ListActivity ListView completed load

I want to set the background color depending on the data for the row of the ListView. I implemented a ListActivity but I dont know how to get notified the load is completed so that I can access the ...
3
votes
6answers
379 views

Force Close in Landscape Mode, but not in Portrait

I have an application which shows a list of items in runtime. When the user presses a Button, all selected items should be deleted (selection determined by CheckBox). In portrait mode everything works ...
2
votes
1answer
58 views

ListActivity Performance Issues

I have serious problems with my ListActivity. When I open it and start scrolling, the app freezes for some seconds and after that it can be scrolled smoothly. I don't get an "application not ...
0
votes
0answers
41 views

Evenhandler for a button in the footer of listactivity to remove the items in listview

In my application there is a listactivity and also a footer which has three buttons in it and I want to remove the checked items in the listactivity by means of pressing a button which is in the ...

1 2 3 4 5 13