Android :: Way To Implement A ListView Without ListActivity?

Feb 11, 2010

I'm new to Android, and I really need to do it this way (I've considered doing it in another Activity), but can anyone show me a simple code (just the onCreate method) that can do Listview without ListActivity?

Android :: Way to implement a ListView without ListActivity?


Android :: ListView And ListActivity

Jun 30, 2009

I create a ListView in my activity and set its ChoiceMode to CHOICE_MODE_SINGLE, I also set its layout to simple_list_item_single_choice. But when i click on it onItemSelected() is never called and getCheckedItemPosition() returns -1. Why? the sample List10.java of ApiDemos uses ListActivity works well which just set the same as I done in my app. Any ideas?

View 2 Replies View Related

Android :: Using ListView Without ListActivity

Jan 13, 2010

I want to create a custom list view in my application. I want it to lay over the top of the application screen, with portions of the screen not filled by the listview showing the underlying application. I've been reading about ListActivity, how it can be started to handle item selected callbacks. I've also read about people simply inserting onClick handlers into the listview as it is drawn. I'm trying to decide the best way to proceed. Is it "dirty" to attach onClick handlers to the rows of a listview? It doesn't seem like the best approach, for instance, it only handles Touch Mode, not the DPAD clicks. This approach doesn't seem like what the architects had in mind. On the other hand, I don't see a good way that I can start a list activity and still have access to all the application variables I need. Do I pass the application in the context and refer back to it from even handlers after casting the context back to it's original class?

View 5 Replies View Related

Android :: ListActivity Mandatory For ListView

Dec 3, 2009

I am starting with ListActivity.

I saw apidemos and saw that it is based on ListActivity. My doubt is, in my first screen I need a few labels and texts under that a list. How to approach this ? I cant do a setContentlayut(R.id.main) if my activity extends ListActivity, no ?

more over I found the tutorial posted in the forums for ListActivity a bit outdated. Where is 1.5 / 1.6 based tutorials ? because I am new, it is taking too much time to correct 1.1 codes.

lastly, if i have a todo type appfor adding deleting and deleting, should i use 3 different layouts or activities ?

View 4 Replies View Related

Android :: Way To Configure ListView Of ListActivity Via Xml?

Jul 28, 2010

Actually the question in subject... How to configure ListView of ListActivity via xml, for example padding, dividerHeight etc...

View 2 Replies View Related

Android :: Creating A ListActivity - Listview And Scrolling?

Aug 13, 2009

I have some problems when creating a ListActivity.

I have a listview and some other widgets and my listview is filled with a custom adapter.

You can see the images of this activity here:

http://www.grabup.com/uploads/ecd0d0eeb7b947e98b2e0d6c1be5478f.png?di...

Now the problem is. I have a scrollview and all the other views and widgets are placed inside of it. As you can see on the image, I don't see all of my 6 comments (that is the list). When i don't place the scrollview the height of the list is perfect (i have set android:layout_height to wrap_content (to my listview and parent LinearLayout). This is perfect but I have other widgets under the list and when the list reaches the bottom of the screen I can't to scroll to view my other widgets..

How can I fix this? I can set the height of the linearlayout manually but the problem is that the height doesnt has to be the same all the time (it loads the commens from my web service).. It has to fit the height of all the comments (like wrap_content normally does..)

Here is a part of the code with the layout and listview..

CODE:............................

View 22 Replies View Related

Android :: Use A Listview Without Extending ListActivity In Class?

Nov 9, 2010

I have an application with various tabs (on a tabhost), each tab is an activity that extends activity, and haves some textfields and things on it

now i need that my tabs have inside a listview, but in the example from android developer guide says that you have to extend ListActivity and not Activity

basically i need to merge these two tutorials:

http://developer.android.com/resources/tutorials/views/hello-listview.html

http://developer.android.com/resources/tutorials/views/hello-tabwidget.html

i want to know how can i use a listview without extending listactivity on my class

someone knows? code...

View 2 Replies View Related

Android :: What ListActivity / ListView Provide Beyond A Regular Activity / View?

Aug 7, 2010

In Android, what functionality do ListActivity and ListView provide beyond a regular Activity and View?

View 2 Replies View Related

Android :: Changing A Divider With SetDivider In A ListActivity Without A Custom ListView?

Oct 29, 2010

I can't seem to get a customized divider, using a Drawable I've defined, to work when using a ListActivity and not creating a custom ListView. It almost seems like when the VM creates its own ListView for me, with the ListActivity, it uses a theme with the default divider provided; and if I try to provide one, no dividers appear in the ListView at all.

I know that I can create a custom ListView using XML and define android:divider on that ListView, and this does recognize my custom divider Drawable. But I would prefer to just let the ListActivity create its own ListView, if I can figure out how to get my own divider working on it.

Here's the code I'm using now:

CODE:............

View 1 Replies View Related

Android :: Implement A Horizontal ListView?

Dec 16, 2009

Can anyone tell me how to implement a horizontal listView?

Items are scrolled horizontally.

View 3 Replies View Related

Android : Want To Implement App On ListView Instead Of TextView

Jul 2, 2010

In my project whenever I extend activity it works fine but as soon as I extend ListActivity it throws exception and shows file not found. Why is that? We already know that ListActivity itself extends the Activity class. The application must run fine.

Here's the java file:

package com.android.feedGrabber;

import java.net.URL;
import java.net.URLConnection;
import java.util.Collection;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

import com.sun.cnpi.rss.elements.Item;
import com.sun.cnpi.rss.elements.Rss;
import com.sun.cnpi.rss.parser.RssParser;
import com.sun.cnpi.rss.parser.RssParserFactory;

If I change "extends Activity" to "extends ListActivity" it gives the exception. I need to bring this change because I want to implement it on ListView instead of TextView.

Error it throws:
debug mode gets active and it highlights under Suspended(exception RunTimeException): ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord, Intent) line: 2663.

View 2 Replies View Related

Android :: Implement A Custom Listview Row With Buttons?

Oct 8, 2010

I have an ExpandableListView that I want to populate with my custom views of type NoteView. NoteView extends LinearLayout and contains two buttons and a checkbox. I have almost everything working, the NoteView's are being populated with backing data, the lists are getting filled, and the buttons are clickable and perform the required tasks.

The problem is the ExpandableListView no longer responds to click/longclick/keypress events at all (other than selecting list items with trackball/DPAD).

I replaced my custom view with a standard TextView and the touch events flowed normally again, so it is almost certainly something I am doing wrong with my custom view or some obscure ListView setting I am overlooking.

Here is my NoteView code and XML Layout. What am I missing?

CODE:.........................

View 1 Replies View Related

Android :: Possible To Implement Both Ontouch And Also Onfling In Same Listview?

Nov 15, 2010

I have a listview and implemented onclick and also onfling.problem is when i do fling(swipe left to right), onclick event of listview is also getting executed.How to overCome this problem? how to differentiate touch(tap) and fling(swipe) in listview? code...

P.S: is it possible? to comment the onclicklistener of listview and writing the same logic in any onTouchEvent? but still i doubt onfling will call ontouch. right?

View 1 Replies View Related

Android :: How To Implement FADE Effect In Background Of ListView?

Jan 20, 2010

I want to implement the fade effect in the listview like in shown in the link. http://developer.android.com/resources/articles/listview-backgrounds.But here it is not explained how to implement that fade effect. Does anybody have any idea on this?

View 7 Replies View Related

Android :: Implement Select All With Multiple Select ListView In Android

Nov 2, 2010

I'm trying to implement a Select All menu item for a ListView in a ListViewActivity. The relevant parts of my ListViewActivity: public class MyListViewActivity extends ListActivity browsed around stackoverflow.com and the google; the above is something that should work. But it isn't. setSelection(i) appears to be the method I want to call on ListView but it's not working as advertised. What am I doing wrong? Is this even possible on Android in code?

View 2 Replies View Related

Android :: ListActivity In Tab Crashes

Oct 26, 2009

I'm trying to create an application that has 3 tabs. Under the middle tab should be a ListView. It starts up fine (on the left tab) but when I click the middle tab it crashes.

The other two tabs are static data specified in the main.xml file. But the middle tab, I try to create dynamically. Here's the code from the main onCreate function:

CODE:...............

Instead I appear to get an exception:

CODE:...............

ContactListActivity is defined this way:

public class ContactListActivity extends ListActivity { ...

I get the feeling that I'm supposed to create the Intent with something like Intent.ACTION_VIEW but this is where I get lost. If this is the problem, I could try stuff until it works, but I'd prefer to understand why.

Or is ContactListActivity supposed to override something ?

View 2 Replies View Related

Android :: Rotation With ListActivity

Feb 8, 2010

I have a problem with rotation, during my ListActivity is loading data from the network. To do it I use a background thread which recovers data and put them inside an ArrayList. While this thread works, there is Progress dialog activated in foreground. For the rotation I use the method with onRetainNonConfigurationInstance() to save my ArrayList's state. After android calls this method, I call dismiss() on the progress dialog on onStop(). Then the activity is created as new with onCreate(), but it use the getLastNonConfigurationInstance() to recover the ArrayList's state. Now, my problem. If I rotate from portrait to lanscape when the download is terminated and I see the data in portrait yet, everything is ok. If I rotate during progress dialog is showing I have two cases: 1- onRetainNonConfigurationInstance() saves the arraylist fully recovered, the thread terminates and everything is ok. 2- onRetainNonConfigurationInstance() saves the arraylist empty, i think the download isn't finished yet. The onCreate is called and my list is empty, the thread terminates, but i don't see anything in my list. If I am in this case and I still rotate from landscape to portrait now I can see my list full with all the data. Why? Where am I wrong?

View 7 Replies View Related

Android :: Listactivity Within Layout

Jul 27, 2010

I know this may be a pretty simple question, but i am having problems trying to find what i am looking for. I have written an application that uses a listview activity. but now that i think more about it, i would like to have other items included to give the status of the app, etc that i just want to be displayed and not scrolled so it wont be entered into the database. does anyone have a good link to an example for this>

View 3 Replies View Related

Android :: ImageView In ListActivity

Jan 11, 2010

I have an ListActivity that I wan't to add a logo to at the top above the list but I'm unsuccessful. This is what my layout looks like at the moment.

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageView android:id="@+id/logo" android:layout_width="fill_parent" android:layout_height="wrap_content" /> <ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:drawSelectorOnTop="false"> </ListView> <TextView android:id="@+id/empty" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="@string/list_empty" /> </LinearLayout>

Then I add an drawable to the ImageView logo in onCreate. I've managed to show either the ListView or the ImageView but never both of them in the same LinearLayout. Is it possible to add other views together with a ListView?

View 3 Replies View Related

Android :: ListActivity Out Of Memory

Sep 8, 2009

I am using a ListActivity. Each list entry contains an ImageView and a TextView. I have a huge list and has been getting Out of Memory errors once I scroll through a fair amount of them. I figured I need to reduce the size of the images but I am wondering what happens to the objects once the list entry is hidden from view (as i scroll down the list). I have read somewhere that the list entry objects are automatically re-use. But what happens to the drawable images which were loaded into the ImageView? IF the ImageView object is reused, what happens to the binary image? Are they freed automatically? How do I prevent the OutOfMemory exception? I want to do something similar like the Android Market. As one scroll downwards the images are loaded and new entries are loaded. The Markey can have a long list which one can scroll down and all the way back up again without any problem. The only difference being mine throws OutOfMemory Exception. Advice anyone?

View 2 Replies View Related

Android :: ListActivity Not Scrolling

Dec 29, 2009

I have a list Activity 4 which i have extended the BaseAdapter and the getview looks like this.

public View getView(int position, View convertView, ViewGroup parent) {
View row=null;
for(int i=0;i<10; {
row = convertView;
if(row==null) {
LayoutInflater inflater = mContext.getLayoutInflater();
row = inflater.inflate(R.layout.parsed,null); }
TextView id = (TextView)row.findViewById(R.id.id);
id.setText(idvector.elementAt(position));
TextView photo = (TextView)row.findViewById(R.id.photo);....

View 4 Replies View Related

Android :: TabActivity And ListActivity?

Feb 2, 2010

I am having a problem.I want to explain in detail. 1)I am Having an TabActivity with 5 tabs. I loaded content as follows.

CODE:............

And the Problem is If i want to start activity which is not specified in tabhost in above Java code,it is going out of tabactivity. ie.,It is not coming in tabactivity.

2)But i want to have all the activities under tabActivity.

View 4 Replies View Related

Android :: Add An Image In ListActivity?

Sep 22, 2009

Problem to add an image in ListActivity...i took this code from

*http://commonsware.com/Android/excerpt.pdf* ..eventhough i m having problem...if i run it says The Application Stopped Unexpectedly.. try Again...i dont know the reason..can u tel anybody....pls point out the error in my code....

Here is my Code:

CODE:.....................

View 5 Replies View Related

Android :: Using SetEmptyView On A ListActivity

Mar 7, 2010

I have the following setup, and the empty view text doesn't show up...

CODE:..............

The layout file is:

CODE:........

String is defined as: <string name="contact_empty_help">"You don't have any contacts to display.

To add contacts, you have to:

<li><font fgcolor="#ffffffff">Go to <b>Contacts</b></font> application to create new contacts
</li>

<li><font fgcolor="#ffffffff"><b>Import from VCF file</b></font>, this is available in Contacts menu, the file most be on the root of the SD card
</li>" </string>

Since the list is empty, it should show me the text defined. I followed the example from the List8

View 3 Replies View Related

Android :: ListActivity - When Using With RelativeLayout

May 16, 2010

I've been progressively expanding my UI, and I want to add a ListView in the middle of my UI. When I add it and change the activity to extend a ListActivity instead of just an Activity, I'm getting a Force Close. Using 1.5. Does a ListView not work embedded in a RelativeLayout?

CODE:.........

XML looks like this:

CODE:..........

And the listrow.xml:

CODE:.............

View 2 Replies View Related

Android :: Add RegisterOnSharedPreferenceChangeListener On To A ListActivity?

Jul 18, 2010

When I call intent code...

where and how do I call registerOnSharedPreferenceChangeListener

View 1 Replies View Related

Android :: ListActivity And OnListItemClick - How To Get Work

Apr 10, 2010

I am having trouble figuring out how to get my onListItemClick to work. Here is my code. package list.view;...................

View 3 Replies View Related

Android :: ListActivity OnListItemClick Not Being Invoked

Sep 18, 2009

Scoured the docs and forums, couldn't find an answer or reason why this is happening: I have a class that extends ListActivity and a View coming from XML for each row that looks like this:

<LinearLayout ...> <TextView ... /> <TextView ... />
<CheckBox ... /> </LinearLayout>

When I click on one of the items in the list, the onListItemClick() i have in my activity is not invoked. Turns out, if I comment out the CheckBox node in my layout xml, it works. I feel like there is a simple explanation that I don't know about.. maybe because CheckBox is an actual interactive widget it's overriding some click action or something?

View 2 Replies View Related

Android :: ListActivity Vs Activity What Are Advantages?

Aug 14, 2009

I was reading on ListActivity and Activity and wanted to know which is better? I only need to display one listview. Would I see great improvements? Does ListActivity handle screen rotation better or it's the same?

View 2 Replies View Related

Android :: Refreshing A ListActivity Within TabView

Nov 20, 2009

I'm running into some issues here with my app. I have 4 tabs run through a tabActivity. One tab sends an intent and run my ListActivity that populates the screen from a simpleCursorAdapter. My problem is that when I change back to this tab, after the first time its run, the list never refreshes regardless of the changes made to the database via other tabs. Is there something I can call from onTabChanged to refresh my ListActivity?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved