[android-developers] Android Style BarButton

2012-01-13 Thread Robin Thapa
I am implementing the android style barButton on my listview on the footer part. My ListView has a checkbox and two item fields on it. When i check the checkbox i want to display the footer part. I am implementing on the BaseAdapter and when the checkbox is checked is use as: public View

[android-developers] Re: hi

2012-01-10 Thread Robin Thapa
Glad it helped you but that piece of code is not helping me, I have an error which says A JSONObject text must beging with {. Its funny though. On Jan 10, 5:03 pm, chowdary nani naveenneeli...@gmail.com wrote: Hi Robinns Thanks for your help thanks for response. your code help me a lot

[android-developers] Android WebView Connecting to Remote URL

2012-01-08 Thread Robin Thapa
Dear All, I have a remote site. The remote site consists of jsp pages with jstl tags in it. However when i try connecting to the remote site. Say (welcome.jsp), with jstl tags embedded. My webview is blank. When i remove the jstl tags from the remote pages, my page is ok in the webview. Why is

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

2012-01-08 Thread Robin Thapa
The webview is simply blank, no nothing in it . When i remove the jstl tags the page is shown. On Jan 8, 3:56 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

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

2012-01-08 Thread Robin Thapa
Try this in your Activity code: @Override public boolean onKeyDown( int keyCode, KeyEvent event ) { // your key event     if ( event.getKeyCode() == KeyEvent.KEYCODE_SEARCH )     {         // Catch the search         // do something         // return true to consume press or false to pass it

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

2012-01-08 Thread Robin Thapa
It's simply a white blank page no nothing in it. On Jan 9, 10:27 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

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

2012-01-08 Thread Robin Thapa
Has anyone encountered such problems. On Jan 9, 10:31 am, Robin Thapa librain.ro...@gmail.com wrote: It's simply a white blank page no nothing in it. On Jan 9, 10:27 am, Michael Banzon mich...@banzon.dk wrote: On Mon, Jan 9, 2012 at 6:23 AM, Robinns librain.ro...@gmail.com wrote

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

2012-01-08 Thread Robin Thapa
you see anything wrong with it. Coz on the desktop browser the result is show as desired. But on emulator not working On Jan 9, 10:56 am, Robin Thapa librain.ro...@gmail.com wrote: Has anyone encountered such problems. On Jan 9, 10:31 am, Robin Thapa librain.ro...@gmail.com wrote

[android-developers] CheckBox Clear on Menu click

2011-08-29 Thread Robin Thapa
Dear All, I have problem on unchecking the checkbox when a menu is fired.? I am using a baseAdapter where i have a getView() method as such:

[android-developers] Android Client Connect to Web Server

2011-06-07 Thread Robin Thapa
Dear All, I have an android client, the UI consists of a get Button which is supposed to connect a web server and fetch the Server date and time. However i could connect to my local Server i.e i have an application (web server a simple index.jsp which has a method which gives the date and time)