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 LinearLay

[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

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 m

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 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 gr

[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

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. |

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, fi

[android-developers] Problem with ListView

2011-04-20 Thread fixus
Hi List, I`m new in developing android apps. Unfortunatly I have probles from start :( I`ve created code like this: package fix.main; import android.app.Activity; import android.os.Bundle; import android.widget.ArrayAdapter; import android.widget.ListView; public class Starter extends Activit

Re: [android-developers] problem with listview

2011-01-13 Thread TreKing
On Thu, Jan 13, 2011 at 3:41 AM, gonzobrains 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

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

回复: [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 发送时间: 2010-10-30 10:17 主 题: [android-developers] Problem with ListView on a

[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 Li

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 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 tim

[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 smooth.W