I'm going to develop an application for Android2.2 platform. I have some doubts while started creating UI Screen for my application.
-> In my one UI i have 10 Text Views and 10 edit-text and i wanted to accommodate One List View also in my UI but i felt difficulty while adding ListView in my UI.
> I'm going to develop an application for Android2.2 platform. I have some
> doubts while started creating UI Screen for my application.
> -> In my one UI i have 10 Text Views and 10 edit-text and i wanted
> to accommodate One List View also in my UI but i felt difficulty while
> adding ListView in my UI.
> Please Help me by giving suggestions.
> Thanks in Advance.
> Aadi
> --
> 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 group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
Yah i know that :-) .. ..in that i came to know tabActivity and Fragment
are there to manage this but its not supporting version 2.2 that's why i
posted my doubt here.
Please help me if you can suggest me any idea it will support Android 2.2
onwards
Thanks Lokesh i'll definitely try this out. But I doubt whether my List
View will work or not. Anyway Let me try this. I'll Let you know if this
idea works or not.
Thanks once again
Aadi
> Thanks Lokesh i'll definitely try this out. But I doubt whether my List
> View will work or not. Anyway Let me try this. I'll Let you know if this
> idea works or not.
> Thanks once again
> Aadi
> --
> 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 group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> It should work. Pls share if u find a bettr way of doing this.
> Sent from samsung mobile
> On Oct 9, 2012 1:10 PM, "Anees Thyrantakath" <sakzk...@gmail.com> wrote:
>> Thanks Lokesh i'll definitely try this out. But I doubt whether my List
>> View will work or not. Anyway Let me try this. I'll Let you know if this
>> idea works or not.
>> Thanks once again
>> Aadi
>> --
>> 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 group, send email to
>> android-developers+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
I created 10 textview, 10 edittext, 3 buttons and a List View in and XML
file. and in Java class i extends from Activity. Then Listview is not
Working and when i extends ListActivity while running on Emulator it showed
Force To Close Error.
I'm Trying to Get a Better Option. If i can't do by adding all in a single
screen i think i have to create a next button so that remaining
informations we can edit from new Page.
> I created 10 textview, 10 edittext, 3 buttons and a List View in and XML
> file. and in Java class i extends from Activity. Then Listview is not
> Working and when i extends ListActivity while running on Emulator it showed
> Force To Close Error.
> I'm Trying to Get a Better Option. If i can't do by adding all in a single
> screen i think i have to create a next button so that remaining
> informations we can edit from new Page.
> Thanks
> Aadi
> --
> 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 group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
> --
> 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 group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
If you are using a ListActivity and using this
ListView list = getListView(); to retrieve your listview, you should use
android:id="@android:id/list" as your listview ID
>> --
>> 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 group, send email to
>> android-developers+unsubscribe@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
> --
> 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 group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
While I do not like to advertize for anyone, except maybe friends, I have been using this here: CommonsWare <http://commonsware.com/> It may be the very best I have come across to getting me started on android app development. And they just updated to version 4.2.
On Tuesday, October 9, 2012 2:09:08 AM UTC-5, Aadi Rockzz wrote:
> Hi Everyone,
> I'm going to develop an application for Android2.2 platform. I have some > doubts while started creating UI Screen for my application.
> -> In my one UI i have 10 Text Views and 10 edit-text and i wanted > to accommodate One List View also in my UI but i felt difficulty while > adding ListView in my UI.
Since you're new to development i suggest you move the ListView to a different Activity and then you could surround the LinearLayout with a ScrollView that will make it scrollable.
If you want to be more adventurous, see my suggestion in that other thread.
Thanks went through the Link that u suggested. But i found little
difficulty to invoke whole through code..So i separated my views in two
Different Activities suppose Like Activity A,B.
Again One Problem..:)..I'll explain that in a step by step manner so that u
can understand my problem easily..
1. I entered some data's on A and went to second Activity(B) by carrying
whole details in a bundle..(A--->B)
2.In Activity B i entered Data's in List View and i went back to A by using
code Receive2.this.onBackPressed(); and in A whole data's i entered is
present.(B-->A)
3. Problem starts here..From A i want to go to B and i wanted to see the
List View Data's that i entered to be present There..
Any one Please Help me if you have a Solution for this...
I'm not entirely sure what you're trying to accomplish, but you should consider that the third step would go into Activity C with the only purpose of displaying the information. would probably simplify things for you.
On Thursday, October 11, 2012 7:28:41 AM UTC+2, Aadi Rockzz wrote:
> Hi Piren,
> Thanks went through the Link that u suggested. But i found little > difficulty to invoke whole through code..So i separated my views in two > Different Activities suppose Like Activity A,B. > Again One Problem..:)..I'll explain that in a step by step manner so that > u can understand my problem easily..
> 1. I entered some data's on A and went to second Activity(B) by carrying > whole details in a bundle..(A--->B) > 2.In Activity B i entered Data's in List View and i went back to A by > using code Receive2.this.onBackPressed(); and in A whole data's i entered > is present.(B-->A) > 3. Problem starts here..From A i want to go to B and i wanted to see the > List View Data's that i entered to be present There..
> Any one Please Help me if you have a Solution for this...
> I'm not entirely sure what you're trying to accomplish, but you should
> consider that the third step would go into Activity C with the only purpose
> of displaying the information. would probably simplify things for you.
> On Thursday, October 11, 2012 7:28:41 AM UTC+2, Aadi Rockzz wrote:
>> Hi Piren,
>> Thanks went through the Link that u suggested. But i found little
>> difficulty to invoke whole through code..So i separated my views in two
>> Different Activities suppose Like Activity A,B.
>> Again One Problem..:)..I'll explain that in a step by step manner so that
>> u can understand my problem easily..
>> 1. I entered some data's on A and went to second Activity(B) by carrying
>> whole details in a bundle..(A--->B)
>> 2.In Activity B i entered Data's in List View and i went back to A by
>> using code Receive2.this.**onBackPressed(); and in A whole data's i
>> entered is present.(B-->A)
>> 3. Problem starts here..From A i want to go to B and i wanted to see the
>> List View Data's that i entered to be present There..
>> Any one Please Help me if you have a Solution for this...
>> Thanks in Advance
>> Aadi
> --
> 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 group, send email to
> android-developers+unsubscribe@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
On Tuesday, October 9, 2012 12:39:08 PM UTC+5:30, Aadi Rockzz wrote:
> Hi Everyone,
> I'm going to develop an application for Android2.2 platform. I have some > doubts while started creating UI Screen for my application.
> -> In my one UI i have 10 Text Views and 10 edit-text and i wanted > to accommodate One List View also in my UI but i felt difficulty while > adding ListView in my UI.