[android-developers] Re: .apk file is not getting downloaded from HTTPS site

2011-08-07 Thread dilu
My https certificate is a test certificate for one month from Verisign. I do get a warning while opening the page.I can open the normal html pages but not able to download the .apk files. On Aug 5, 10:48 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Aug 6, 2011 2:06 AM, dilu

[android-developers] .apk file is not getting downloaded from HTTPS site

2011-08-05 Thread dilu
Hi, I have a webserver on which I am putting my .apk file.I have given correct mime type also for apache web server. When I am trying to download from HTTP then it is working fine but the same thing is not getting downloaded from HTTPS site. I have a certificate for HTTPS. Any help will be highly

[android-developers] Re: .apk file is not getting downloaded from HTTPS site

2011-08-05 Thread dilu
Yeah I can download file from PC. On Aug 5, 9:29 pm, Chris Stratton cs07...@gmail.com wrote: On Friday, August 5, 2011 12:07:06 PM UTC-4, dilu wrote: I have a webserver on which I am putting my .apk file.I have given correct mime type also for apache web server.  When I am trying

[android-developers] Continuous listening to server

2011-06-08 Thread dilu
Hi, I am working on an application which will continuously listen to server i.e if there is any changes on server then server will push it to the client and client should be able to receive it.I dont want to poll the server.I want to use push technology. I did a lot of google.People are suggesting

[android-developers] Showing mathematics question in an android application

2011-06-07 Thread dilu
Hi All, I am doing an application where I need to show mathematical questions such as integration,differential,square-root,bi-nominal equations in an HTML page which is getting loaded on webview. First I tried with JSMath3.6e library but It does not work satisfactorily. Please suggest me

[android-developers] Re: Disable a particular row in list view onCreate

2011-04-02 Thread dilu
Thanks.But my question is how to do that? On Apr 2, 5:32 pm, lbendlin l...@bendlin.us wrote: lists work differently. The process of creating a list cell (and re-using it) is de-coupled from the process of updating it. The disabling needs to be done in the updating part. So when Android asks

[android-developers] Re: Disable a particular row in list view onCreate

2011-04-02 Thread dilu
oh thanks a lot. On Apr 2, 8:34 pm, lbendlin l...@bendlin.us wrote: Don't know - by reading the listview documentation maybe? -- 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] Re: Disable a particular row in list view onCreate

2011-04-01 Thread dilu
Why do I want to disable? When list items will get created then I wants to disable a particular item ,so that user cant interact with that particular row.Conditions I am checking from the database.Once database will get updated then again that particular row will become enabled based on some

[android-developers] Disable a particular row in list view onCreate

2011-03-29 Thread dilu
Hi, I want to disable a particular row in list view based on some condition on onCreate. I can disable the row on itemClick. But I want to disable that particular row onCreate. Please provide me some piece of coode.I read in this forum that override the adapter class but I am confused how to do

[android-developers] Re: How to exit the application..?

2011-01-10 Thread dilu
(android.os.Process.myPid()); /Maali 2011/1/10 dilu discover.dile...@gmail.com Even I tried with System.exit(0). But its not working .So question is that how to completly exit the application if we want to do . On Dec 29 2010, 11:10 am, Dianne Hackborn hack...@android.com wrote: No, it doesn't

[android-developers] Re: How to exit the application..?

2011-01-10 Thread dilu
@Dianne, But I think finish() kills only one activity at a time.With in a application if we want to close the application/kill the application totally from any activity then what to do? Regards Dileep On Jan 11, 8:04 am, Dianne Hackborn hack...@android.com wrote: On Mon, Jan 10, 2011 at 6:15

[android-developers] Re: How to exit the application..?

2011-01-09 Thread dilu
Even I tried with System.exit(0). But its not working .So question is that how to completly exit the application if we want to do . On Dec 29 2010, 11:10 am, Dianne Hackborn hack...@android.com wrote: No, it doesn't, it exits the process, but leaves whatever activity stack is being maintained

[android-developers] Re: How to exit the application..?

2011-01-09 Thread dilu
://www.kbeanie.com On Mon, Jan 10, 2011 at 12:12 PM, dilu discover.dile...@gmail.com wrote: Even I tried with System.exit(0). But its not working .So question is that how to completly exit the application if we want to do . On Dec 29 2010, 11:10 am, Dianne Hackborn hack...@android.com wrote

[android-developers] Alarm manager using date and time picker

2010-10-20 Thread dilu
Hi, I want to set the alarm from the selected date and time from date and time picker in android. But I am not able to do.My code is as follows: mHour,mDay,mMinute etc are values from date and time picker. Calender ca; ca=Calendar.getInstance(); ca.clear();

[android-developers] How to Change label of activity dynamically?

2010-07-14 Thread dilu
Hi, When we create a new activity, in the Android.manifest file, we can set some text for the activity's label. It looks like: activity class=MyActivity android:label=Some text here! Is there anyway to access that programatically and change it during runtime? Regards Dileep -- You

[android-developers] Problems with Simple Adapter

2010-07-12 Thread dilu
Hi, I am calling one webservice.Result of webservice I am storing in an Array list. Result of webservice I want to display as list view. For ListView I am using SimpleAdapter. and SimpleAdapter is something like this:- SimpleAdapter adapter = new SimpleAdapter(this,hashmap, layout, from, to); I

[android-developers] How to upload photo in Twitter using Android phone?

2010-03-02 Thread dilu
Hi, I am newbie to Android. I want to develop an application which will be used for uploading the photo to twitter? Can anyone guide me regarding the process for developing the application or any link which refers this type of example? Regards Dileep -- You received this message because you are

[android-developers] How to use check box in list view?

2009-02-17 Thread dilu
Hi I have a list view with checkbox .List view contains all email list from phonebook application.Now i want to check multiple email at a time.After checking the email items ,I want to send some request to selected email. So,please tell me how to do this? any sample code or tutorial or anything

[android-developers] How to convert base64string to Image?

2009-02-09 Thread dilu
Hi All, I am getting image from server side as Base64 string in xml form.Now i want to convert this base64 string into image.once it will get converted into image then i will store it into my local database. Canany one tell me how to do this? Any example iOr sample code for converting base64

[android-developers] How to call web service with different methods?

2009-02-03 Thread dilu
I am having a webservice at particularURL:- http://192.168.1.10/abcd/Service_MobClients.asmx;. Under that webservice we are having different methods like 1.authenticate client 2.contacts to sync 3.inbox to sync etc. now I want to call these methods with parameters. So,please tell me how to call

[android-developers] How to get lists of email from contact application?

2009-02-03 Thread dilu
Hi, Please tell me how to get lists of email from contact application in android?If possible then please provide me some sample code or tutorial on this. please help me. Thanks dileep --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Web Service

2008-12-19 Thread dilu
Hi Plz tell me that what is the best way to work on web services in android.I dont want to use third party library.I want to use in-built library. Please provide me some sample code or link. Thanks Dilu --~--~-~--~~~---~--~~ You received this message because you

[android-developers] How to use built in email application to send email from my application?

2008-12-11 Thread dilu
for u people to reply. Thanks dilu --~--~-~--~~~---~--~~ 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

[android-developers] sending email

2008-12-04 Thread dilu
Hi i want to develop an aplication which can send email .so can any one provide me sample code or any link that is useful.I got one site davanum srinivas blog,but tht code is too old and full code is not available right now,they have removed it from site.So provide me some link. Thankss dilu

[android-developers] What are the possible way to work on database?

2008-11-21 Thread dilu
easy comparing to the first method.If second method works in android then can anyone provide me a sample code for this? I will be highly obliged for this. Thanks Dilu. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Not able to read data from shell command

2008-11-18 Thread dilu
+ : + firstName + ( + ageColumName + : + age + )); } while(c.moveToNext()); } } } finally { if (myDB != null) myDB.close(); } this.setListAdapter(new ArrayAdapterString(this, android.R.layout.simple_list_item_1, results)); } } thanks dilu

[android-developers] Is there a way to put horizontal and scroll bar both together?

2008-11-11 Thread dilu
Hi i want to put horizontal and vertical scroll bar both on the same page .I am able to put the vertical scroll bar ,using scroll view,but i wanna to put horizontal scrol bar also.so please tell me how to do it? Thanks dilu --~--~-~--~~~---~--~~ You received

[android-developers] Unparsed aapt error(s)! Check the console for output

2008-10-23 Thread dilu
hi i am getting error like this Unparsed aapt error(s)! Check the console for output. what may be the error?please help me out. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Error coming while creating a login page

2008-10-21 Thread dilu
' in package 'android' No resource identifier found for attribute 'layout_toLeft' in package 'android. please help me out. thanks. dilu --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] R.java file is not gettin created

2008-10-17 Thread dilu
Hi I am completely new to this project.When i am creating any project then R.java file is not getting created.due to which errors are comin in my filename.java file.due to this only i am getting error in androidmanifest.xml also. so,what to do? please give me guidance.

[android-developers] creating an address book

2008-10-07 Thread dilu
are writing the code in android? PLEASE HELP ME OUT. THANKS. DILU --~--~-~--~~~---~--~~ 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