[android-developers] Problem in listview with images in it

2012-01-20 Thread ravi
Hi, I have a list view with image and some textviews in each row. Initially when the listview is loaded all works properly. But when I scroll down the listview and come up again the background image changes. Can someone tell me the reason why its happening so? Hope to get the reply soon.

Re: [android-developers] Problem in listview with images in it

2012-01-20 Thread Mukesh Srivastav
Pleae check with the lazyload apps. secondly you need to store or cache the downloaded images so that next time it should read it from the cache not again from the server. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Tue, Jan 17, 2012 at 3:56 PM, ravi

Re: [android-developers] Problem with listVIew

2011-11-14 Thread Poncho
Hi, I struggled with similar issue for two weeks before finding the following thread which suggest that ListView should not be used with editable entries: http://groups.google.com/group/android-developers/browse_thread/thread/50f0fc185da8fe4d?pli=1 The suggested solution, wrapping a

[android-developers] Problem with listVIew

2011-11-11 Thread Elison Lusvardi
Hi guys, how are you? I have a problem in my application's ListView. Each item in the ListView can be created by different widgets, some have pictures, the layout is different in each case, some have images, others have buttons, etc.. All of them have actions like onClick and onLongClick - being

[android-developers] Problem with ListView within a List Item

2011-08-16 Thread Vaishnavi Senthilnathan
Hello All, I am using a ListView as an item in another ListView. The problem is the main listview item is not able to fit to the size of the sub listview. It is just showing the static size. For example I have 10 items in the main listview. and for each item in the main listview i have 5 items in

Re: [android-developers] Problem with ListView within a List Item

2011-08-16 Thread Ratheesh Valamchuzhy
Hi... R u checked the android:layout_height property of the two list view , thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] Problem with ListView within a List Item

2011-08-16 Thread rambabu mareedu
i think u have to give layout_weight=1 in xml On Mon, Aug 15, 2011 at 10:56 PM, Vaishnavi Senthilnathan yshu.senthilnat...@gmail.com wrote: Hello All, I am using a ListView as an item in another ListView. The problem is the main listview item is not able to fit to the size of the sub

Re: [android-developers] Problem with ListView within a List Item

2011-08-16 Thread rambabu mareedu
or otherwise show u your code.to display listview which adapter your using base adapter or array adapter On Mon, Aug 15, 2011 at 10:56 PM, Vaishnavi Senthilnathan yshu.senthilnat...@gmail.com wrote: Hello All, I am using a ListView as an item in another ListView. The problem is the main

Re: [android-developers] Problem with ListView

2011-04-20 Thread Mark Murphy
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to examine LogCat and look at the stack trace associated with your error. Most likely, you do not have a widget with android:id=@+id/listView1 in your res/layout/main.xml file, but that is just a guess. On Tue, Apr 19, 2011 at 1:45 PM,

Re: [android-developers] Problem with ListView

2011-04-20 Thread Kapil Lokhande
Hi, Hey man you have to use different xml layout for row of listview. see this carefully you will understand what ou are doing wrong. http://developer.android.com/resources/tutorials/views/hello-listview.html -- Thanks Regards, Kapil Lokhande | Dexter Advisory Pvt. Ltd. http://dexterltd.com/ |

[android-developers] problem with listview

2011-01-13 Thread gonzobrains
Hi, I tried to make a post about this before but I don't see it in the group for some reason. :/ I am trying to make a list of books, with each book containing two lines of text and a delete button. For some reason when I add books to the adapter they show up in the list twice. What am I doing

Re: [android-developers] problem with listview

2011-01-13 Thread TreKing
On Thu, Jan 13, 2011 at 3:41 AM, gonzobrains gonzobra...@gmail.com wrote: What am I doing wrong? Possible adding the items twice. How can I correct it? Only add them once. Post the code where you're adding to the adapter and where you getView(), if you overrode it.

[android-developers] Problem with ListView on a 480x854 device

2010-10-29 Thread John Gaby
I have a ListView where the rows are not scaled properly under certain circumstances. If I build my project using the following manifest, then the ListView looks like: http://gabysoft.com/images/androidgood.png. However, if I change the minSdkVersion to 4 (and that is the ONLY change), then the

回复: [android-developers] Problem with ListView on a 480x854 device

2010-10-29 Thread kearnel_android
Android support multi-screen-solution since SDK 6. Thus, if you create a project using MinSdkVersion signed 4, the application will only support 480*320 by default. 2010-10-30 kearnel_android 发件人: John Gaby jg...@gabysoft.com 发送时间: 2010-10-30 10:17 主 题: [android-developers] Problem

[android-developers] problem using listview...

2010-07-30 Thread A N K ! T
am trying to show a list view in my layout .but not getting why it is not showing the listview here is my code please guide me...i know am missing something but not getting it what.!!! public class ShowNumberList extends Activity{ ListView list; @Override protected void

Re: [android-developers] problem using listview...

2010-07-30 Thread TreKing
On Fri, Jul 30, 2010 at 2:45 AM, A N K ! T ankit.awasth...@gmail.comwrote: .i know am missing something but not getting it what. I would start with making the main LinearLayout's height and width to be fill_parent ...

[android-developers] Problem with ListView, getting selection to stick first time and when scrolling

2010-05-16 Thread Mikael Bertlin
Hi, I have a ListView that I can't get to behave as I like. When I click it the first time the item I click won't get selected? It fires the onItemClick event but it is not selected on the screen. If I click the list one more time the selection remains. I want this to be the behavior the first

Re: [android-developers] Problem with ListView, getting selection to stick first time and when scrolling

2010-05-16 Thread Mark Murphy
Mikael Bertlin wrote: I have a ListView that I can't get to behave as I like. When I click it the first time the item I click won't get selected? It fires the onItemClick event but it is not selected on the screen. If you are using the touchscreen, it is not supposed to stay selected on the

[android-developers] Problem in Listview with Checkbox

2009-09-26 Thread ragavendran s
I am new to Android... Here i m Displaying Listview with Checkbox in ListActivityIf i Click the particular Checkbox it should says checked otherwise unChecked.. I dont know how to use this*onSetOncheckChangeListener* Thanks in Advance, Raghav.S *Here is My Code:* final

[android-developers] Problem with listview scrolling

2009-07-29 Thread And-Rider
I have a listview in my application to which the view is loaded dynamically after populating the view i start inserting the records onto the database.But until the database insertion gets completed the list view scrolling is not smooth.Once the database population is over the scrolling is