Re: [android-developers] Listview and expandablelistview

2012-01-13 Thread Robinns
There's google On Jan 13, 2012 3:14 PM, Uday Gokhale gokhale.u...@gmail.com wrote: I want to create app in which 1) get main list view content from user (from edit-text) .on click of add button it will add dynamically. 2)on click of list view pop up in which 3 options 1)add sub list

Re: [android-developers] cannot install ADT Plugin

2012-01-13 Thread Robinns
I too had similar problem n then followed stackoverflow.com. Adt plugin rev 16 was complicated but solved it On Jan 14, 2012 12:27 AM, Marcelo Henrique marceloh...@gmail.com wrote: what ? 2012/1/13 TreKing treking...@gmail.com On Thu, Jan 5, 2012 at 8:47 PM, Corbin enter...@gmail.com wrote:

Re: [android-developers] Need Help

2012-01-11 Thread Robinns
What have you done so far? and where did you find some sort of problems. Untill you show something to us on what you have done? How would anyone here know what you are upto? On Wed, Jan 11, 2012 at 5:39 PM, Seshu s.seshu...@gmail.com wrote: Hi All, I am developing a small application

Re: [android-developers] hi

2012-01-11 Thread Robinns
Please Google n find something n yes once u got error do request help u surely ell be helped On Jan 12, 2012 11:32 AM, chowdary nani naveenneeli...@gmail.com wrote: HI All, I need help on rss feed parsing in android can any one help me please. Thanks Naveen -- You received this

Re: [android-developers] hi

2012-01-11 Thread Robinns
Now u have the code.so far so good. Now point us where u have error? Check ur log? Don't expect someone will copy paste ur code to run n find the error? What abt ur manifest file? Ur prermission? On Jan 12, 2012 12:35 PM, chowdary nani naveenneeli...@gmail.com wrote: Hi All, I am working on rss

Re: [android-developers] hi

2012-01-11 Thread Robinns
Is the link u want to parse is in RSS format On Jan 12, 2012 12:35 PM, chowdary nani naveenneeli...@gmail.com wrote: Hi All, I am working on rss parsing i am unable to display the rss feeds and i am unable to find the problem. here is my code public class RSSReader extends Activity

Re: [android-developers] hi

2012-01-11 Thread Robinns
Can u post the logcat error? On Jan 12, 2012 12:56 PM, chowdary nani naveenneeli...@gmail.com wrote: yes that is the link i need parse i am geetting error at reading the feeds i am unable to read the feeds i.e, i am getting empty eeds On Thu, Jan 12, 2012 at 12:27 PM, Robinns librain.ro

Re: [android-developers] hi

2012-01-10 Thread Robinns
private void parseJson(String j){ JSONObject jObj = new JSONObject(j); JSONArray jArray - jObj.getJSONArray(data); for(int i=0;ijArray.length();i++){ JSONObject post = jArray.getJSONObject(i); System.out.print(post.getString(id)); } } Hope it helps On Tue, Jan 10, 2012 at 5:33

Re: [android-developers] Re: hi

2012-01-10 Thread Robinns
Its a JSONArray and i got it. Thanks Mark Murphy On Tue, Jan 10, 2012 at 6:03 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Jan 10, 2012 at 7:10 AM, Robin Thapa librain.ro...@gmail.com wrote: Glad it helped you but that piece of code is not helping me, I have an error which says A

Re: [android-developers] Re: hi

2012-01-10 Thread Robinns
In day loop use getString(watever ) On Jan 10, 2012 6:54 PM, skink psk...@gmail.com wrote: chowdary nani wrote: Hi Robin, i again need small help again, read this: http://developer.android.com/reference/org/json/JSONObject.html pskink -- You received this message because you are

Re: [android-developers] Android WebView Connecting to Remote URL

2012-01-08 Thread Robinns
It's just an empty page. On Sun, Jan 8, 2012 at 4:41 PM, Michael Banzon mich...@banzon.dk wrote: What do you see in a plain ol' browser?? On Sun, Jan 8, 2012 at 11:49 AM, Robin Thapa librain.ro...@gmail.com wrote: Dear All, I have a remote site. The remote site consists of jsp pages

Re: [android-developers] Help.to find out button/key press on phone..

2012-01-08 Thread Robinns
Wow, i dont think you can do that at an application level. May be i am wrong? but as with my little knowledge in Android its not possible at application level. On Sun, Jan 8, 2012 at 4:47 PM, Dhaval Varia dhavalkva...@gmail.com wrote: dear i am making one application. where i required to

Re: [android-developers] Android WebView Connecting to Remote URL

2012-01-08 Thread Robinns
No, its not a server side problem, in my desktop browser with the jstl i see the content as desired. But on the emulator with jstl tags i see a blank page. On Mon, Jan 9, 2012 at 1:12 AM, Michael Banzon mich...@banzon.dk wrote: On Sun, Jan 8, 2012 at 11:58 AM, Robinns librain.ro...@gmail.com

Re: [android-developers] Android WebView Connecting to Remote URL

2012-01-08 Thread Robinns
White blank page On Mon, Jan 9, 2012 at 11:12 AM, Michael Banzon mich...@banzon.dk wrote: On Mon, Jan 9, 2012 at 6:23 AM, Robinns librain.ro...@gmail.com wrote: No, its not a server side problem, in my desktop browser with the jstl i see the content as desired. But on the emulator

Re: [android-developers] Tutorial HelloTabWidget crashes

2011-11-20 Thread Robinns
Have you defined you activity under the Manifest.xml file. Check it out On Sun, Nov 20, 2011 at 3:32 PM, wyo otto.w...@orpatec.ch wrote: I've tried the tutorial HelloTabWidget and think I've done everything as described yet it crashes with 11-20 10:23:33.166: E/AndroidRuntime(12801):

Re: [android-developers] Re: Tutorial HelloTabWidget crashes

2011-11-20 Thread Robinns
That is what you missed. On Sun, Nov 20, 2011 at 6:54 PM, wyo otto.w...@orpatec.ch wrote: Well then why isn't it documented in the tutorial? I've now simply duplicated the app activitiy and replaced the name like activity android:label=@string/app_name

Re: [android-developers] CheckBox Clear on Menu click

2011-08-29 Thread Robinns
Sorry with my ?. Well i solved it. there were two options for me whether to change my getView() or use my the onBackPressed(); So i used the onBackPressed()?. Though this is a temporary. I will post the code. On Tue, Aug 30, 2011 at 5:17 AM, TreKing treking...@gmail.com wrote: On Fri, Aug 26,

Re: [android-developers] Should i use multiple BroadCastReciever?

2011-08-02 Thread Robinns
Dear, I am pasting my code here. --- public class Inbox extends ActivityGroup { private ArrayListInboxEmailDAO inboxEmails = new ArrayListInboxEmailDAO(); private ListView listView; private ArrayListView trackViews; private

Re: [android-developers] Problem streaming radio on Android 2.2 and up

2011-06-22 Thread Robinns
Have you tried for mms protocol to stream On Tue, Jun 21, 2011 at 2:57 AM, Chandler Bennett mcbennett0...@yahoo.comwrote: I am currently designing an android application that incorporates radio streaming. The app works as it should with devices below Android 2.2, but works slowly if the