[android-developers] Re: Multiple data for an intent

2009-09-09 Thread AJ
You could put all data in Bundle and send this Bundle with the Intent. This will solve your problem. Thanks, AJ On Sep 10, 10:02 am, Dexter#39;s Brain coomar@gmail.com wrote: Hi All, I was just wondering if it is possible to give the intent a set of data, instead of just one

[android-developers] Crash at drawing WebView into the Canvas.

2009-09-10 Thread AJ
would be highly appreciated. Thanks in advance, AJ --~--~-~--~~~---~--~~ 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

[android-developers] Re: Supported Media Formats Programmatically

2009-09-11 Thread AJ
ajeet.invinci...@gmail.com wrote: See the class MimeTypeMap.java (frameworks\base\core\java\android \webkit) Hope this helps you. AJ kk wrote: How do I determine programmatically which Media MimeTypes/Formats are supported on a specific device/platform? There doesn't appear

[android-developers] Re: How to get webview's content into a bitmap?

2009-09-11 Thread AJ
Thanks gjs, that works :) Anyway sorry for being redundant and impatient. thanks, AJ On Sep 10, 8:12 pm, gjs garyjamessi...@gmail.com wrote: Hi again, I thought you pasted the correct code already ? Anyway for risk of being accused of writing the code for you, the following will write

[android-developers] Do we get any event in the Activity when the activity gets re-sized?

2009-09-16 Thread AJ
Do we get any event in the Activity when the activity gets resized? like when Virtual keyboard appears on the screen. Thanks, AJ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: WebKit capabilities

2009-09-16 Thread AJ
with us. Thanks, AJ On Sep 16, 5:52 pm, Markus Junginger mar...@junginger.biz wrote: I am also very interested in some Android specific documentation for Android's WebKit. Just read a post from January that touch events are not supported in JavaScript, which are available on the iPhone. What

[android-developers] Re: Emulator won't finish booting...

2009-09-16 Thread AJ
Hi furby, Are you starting the emulator with -avd option. If not then create an avd and start the emulator with -avd option. See the following link for more details. http://developer.android.com/guide/developing/tools/avd.html Thanks, AJ On Sep 16, 6:03 pm, furby wookie...@gmail.com wrote

[android-developers] Re: Disable WebKit JavaScript security for XMLHttpRequest

2009-09-16 Thread AJ
I am also looking the answer for this. Thank, AJ On Sep 16, 1:36 pm, Miguel Paraz mpa...@gmail.com wrote: Hi, Is there any way to disable the WebKit JavaScript security for XMLHttpRequest? I need an HTML file in the local assets to access remote URLs for AJAX style calls. Thanks

[android-developers] Re: Do we get any event in the Activity when the activity gets re-sized?

2009-09-16 Thread AJ
with Window also gets some event when the Window gets re- sized? Thanks, AJ On Sep 16, 9:34 pm, Dianne Hackborn hack...@android.com wrote: Activities don't get sized, windows do.  The window associated with your activity will be resized if it is in resize mode. On Wed, Sep 16, 2009 at 4:21 AM, AJ

[android-developers] Re: save new file into asset directory from app

2009-09-17 Thread AJ
Are you trying to load HTML file and its corresponding resources locally? Thanks, AJ On Sep 18, 9:05 am, rooster 808 rich.al...@gmail.com wrote: Is it possible for the App to create a new file/asset and write this into the /assets directory. The reason being, that's the only way I can

[android-developers] Query regarding User Agent used in Android Download Manager?

2009-09-18 Thread AJ
this be used for all downloads or we can changed it? Thanks in Advance, - AJ --~--~-~--~~~---~--~~ 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

[android-developers] Re: save new file into asset directory from app

2009-09-18 Thread AJ
that? Thanks, AJ On Sep 18, 2:38 pm, Mark Murphy mmur...@commonsware.com wrote: rooster 808 wrote: Is it possible for the App to create a new file/asset and write this into the /assets directory. No. The assets/ are stored inside the signed-and-sealed APK and cannot be modified at runtime

[android-developers] Re: save new file into asset directory from app

2009-09-18 Thread AJ
To explain the in short, If we try to load local HTML file [through ContentProvider] in which the css is specified with import keyword, the css deoes not get properly applied. Thanks, AJ On Sep 18, 3:50 pm, AJ ajeet.invinci...@gmail.com wrote: Hi Mark, I have tried this earlier and I

[android-developers] Re: save new file into asset directory from app

2009-09-18 Thread AJ
Hi Mark, I have given the fully-qualified url of CSS. But don't know why this is happening. I will make small app and will try to open an issue on this if could not get answer on this forum. Ideas from the experts are very much welcome. Thanks, AJ On Sep 18, 4:13 pm, Mark Murphy mmur

[android-developers] Re: Take an action when soft keyboard is launched

2009-09-29 Thread AJ
check the following link http://developer.android.com/reference/android/view/View.html#onSizeChanged%28int,%20int,%20int,%20int%29 hope this helps you. Thanks, AJ On Sep 29, 10:34 am, Gulfam gulfa...@gmail.com wrote:  Hi All,    I also want to take some actions on soft keyboard appear

[android-developers] Re: Take an action when soft keyboard is launched

2009-09-29 Thread AJ
If your class is extending from an Activity then I don't know how to get that event. But if your app has some class which is extending from View, then onSizeChanged() gets the control when ever your view gets shortened. Like:- WebView get in Browser app Thanks, AJ On Sep 29, 2:34 pm, Mark

[android-developers] Re: Take an action when soft keyboard is launched

2009-09-30 Thread AJ
, AJ On Sep 30, 3:37 am, Thomas perd...@gmail.com wrote: Hi Thanks all for your answers. I put a code in the onSizeChanged(), but when this method is called always when the view resizes. I'd like to know how I can discover using this method if the virtualkeyboardis opened or not. I saw

[android-developers] Re: How to take snapshots (Screen shots) of a web page

2009-10-05 Thread AJ
Hi Umesh, check the following link http://groups.google.com/group/android-discuss/browse_thread/thread/c7891cac8225505/8bde5eab18ef05c0?lnk=gstq=screenshot#8bde5eab18ef05c0 Thanks, AJ On Oct 5, 4:25 pm, Umesh javaumesh-andr...@yahoo.co.in wrote: Hi all, I want to implement a functionality

[android-developers] Re: How to take snapshots (Screen shots) of a web page

2009-10-05 Thread AJ
This would work fine if you take snapshot of visible portion of webpage. Thanks, AJ On Oct 5, 6:11 pm, AJ ajeet.invinci...@gmail.com wrote: Hi Umesh, check the following link http://groups.google.com/group/android-discuss/browse_thread/thread/c... Thanks, AJ On Oct 5, 4:25 pm, Umesh

[android-developers] Re: Is it possible to create custom theme?

2009-10-05 Thread AJ
check http://developer.android.com/guide/topics/ui/themes.html http://www.anddev.org/applying_a_theme_to_your_application-t817.html Thanks AJ On Oct 5, 6:15 pm, Karthik P karthi...@gmail.com wrote: Please let me know how do I achieve it. On Mon, Oct 5, 2009 at 6:40 PM, nisha.devit nisha.de

[android-developers] Re: Subfolders in the res/drawable

2009-10-05 Thread AJ
that's sad AJ On Oct 5, 6:11 pm, Mark Murphy mmur...@commonsware.com wrote: Is it possible to have subfolders in the /res/drawable directory. Unfortunately, no. -- Mark Murphy (a Commons Guy)http://commonsware.com Android App Developer Books:http://commonsware.com/books.html

[android-developers] Re: How to take snapshots (Screen shots) of a web page

2009-10-05 Thread AJ
Cool :) On Oct 5, 10:02 pm, Umesh javaumesh-andr...@yahoo.co.in wrote: Hi Ajit, Thanks a lot, this proved to be really a worth while information. Umesh. From: AJ ajeet.invinci...@gmail.comTo: Android Developers android-developers@googlegroups.com Sent

[android-developers] Some few ques about android browser?

2009-10-05 Thread AJ
Hi all group members, I had few questions about the android browser. 1- What is maximum page size supported in browser? 2- What is maximum URL length (in char) of browser? I looked in the browser code but did not answers for that. Any help would be useful. Thanks, AJ

[android-developers] Re: I want to connect my emulator to server and transfer data from it

2009-10-06 Thread AJ
Hi santhu, You need to fire HTTP POST request to the server. See the example as below http://developers.sun.com/mobility/midp/ttips/HTTPPost/ hope this helps you Thanks, AJ On Oct 6, 2:28 pm, Babyboo handsomebo...@gmail.com wrote: I don't understand what you've written. You want your

[android-developers] Re: Some few ques about android browser?

2009-10-06 Thread AJ
I hope that somebody would be knowing this. Thanks, AJ On Oct 6, 10:24 am, AJ ajeet.invinci...@gmail.com wrote: Hi all group members, I had few questions about the android browser. 1- What is maximum page size supported in browser? 2- What is maximum URL length (in char) of  browser

[android-developers] Re: Crossword Puzzle in Android

2009-10-06 Thread AJ
@Carl: That is a very good example. You rock !!! Thanks, AJ On Oct 6, 7:09 pm, Sables em...@amnet.net.au wrote: Does this happen to be an assignment based question. On Oct 1, 4:33 pm, Seth Mould sethmo...@yahoo.com wrote: Carl, that's brilliant. The XML can be adapted to use bars

[android-developers] Re: How to take snapshots (Screen shots) of a web page

2009-10-07 Thread AJ
, AJ On Oct 7, 5:41 pm, Umesh javaumesh-andr...@yahoo.co.in wrote: Hi Ajeet, A quick question, is it possible to accomplish this task in the background with without harming the present view (that is being displayed) ? and also sometimes I get illigalArgument Exception for the following

[android-developers] Re: Rating Bar Dialog API

2009-10-09 Thread AJ
Hi Subba, check the following link:- http://www.anddev.org/viewtopic.php?p=25186 Hope this helps you Thanks, AJ On Oct 9, 4:52 pm, Mark Murphy mmur...@commonsware.com wrote: Subba wrote: I know Market application has Rating Bar Dialog. Is there any API to create Rating Bar Dialog

[android-developers] Re: Rating Bar Dialog API

2009-10-09 Thread AJ
Hi All I tried that example on my local system and its working. Thanks to Google AJ On Oct 9, 6:45 pm, AJ ajeet.invinci...@gmail.com wrote: Hi Subba, check the following link:-http://www.anddev.org/viewtopic.php?p=25186 Hope this helps you Thanks, AJ On Oct 9, 4:52 pm, Mark Murphy

[android-developers] Re: AppWidget TextView question.

2009-10-09 Thread AJ
Hi Abhilash, try using :- TextView tv = (TextView)findViewById(R.id.textv); tv.setEllipsize( TextUtils.TruncateAt.END); this sets the ellipses at the end. Thanks, AJ On Oct 9, 6:39 pm, Abhilash abhilash.ramakris...@gmail.com wrote: I have an AppWidget that contains a TextView

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread AJ
what is st and sb ?? Thanks, AJ On Oct 10, 11:55 am, ragavendran s sraghav.ra...@gmail.com wrote: problem in StringTokenizer String str=one.1.two.2.three.3 Stringtokenizer tok=new Stringtokenizer(str); while(st.hasmoreTokens()) {  sb.append(st.nextToken); } Sustem.out.println

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread AJ
); for(String s : items) { sb.append(s); sb.append(\n); } System.out.println(sb.toString()); hope this helps you. Thanks, AJ On Oct 10, 1:47 pm, ragavendran s sraghav.ra

[android-developers] Re: can anybody tell pls......

2009-10-10 Thread AJ
there are helper function available to do this. check this isDigit(char ch) Thanks, AJ On Oct 10, 3:02 pm, ragavendran s sraghav.ra...@gmail.com wrote: hi Aj here i i know how to display list the only problem is how to retrieve the corresponding values.can i separate the intager values

[android-developers] Re: end dialer activity

2009-10-11 Thread AJ
You can stop any activity by calling [ finish(); ] Try this, i think this would work. thanks, AJ On Oct 12, 6:53 am, shahzad ahmad shahzad.s.ah...@gmail.com wrote: Hi,     I have started dialer activity with code         Intent myIntent = new Intent(Intent.ACTION_CALL, Uri.parse

[android-developers] Re: any good uml creation tool for android?

2009-11-01 Thread AJ
Try this http://www.objectaid.com/ I have tried this and its very good. Just drag and drop your java classes and it creates all dependencies/hierarchy/relation etc. Thanks, AJ On Nov 2, 8:58 am, jerryfan2000 jerryfan1...@gmail.com wrote: Hi, Is there any free or opensource Eclipce plug

[android-developers] How to implement FADE effect in background of ListView?

2010-01-20 Thread AJ
Hi group, I want to implement the fade effect in the listview like in shown in the link. http://developer.android.com/resources/articles/listview-backgrounds.html But here it is not explained how to implement that fade effect. Does anybody have any idea on this? Thanks -- You received this

[android-developers] Re: How to implement FADE effect in background of ListView?

2010-01-20 Thread AJ
list view also. Thanks AJ On Jan 20, 2:42 pm, Mark Murphy mmur...@commonsware.com wrote: Hi group, I want to implement the fade effect in the listview like in shown in the link. http://developer.android.com/resources/articles/listview-backgrounds But here it is not explained how

[android-developers] Re: How to implement FADE effect in background of ListView?

2010-01-20 Thread AJ
Thanks Mark for the info let me try this - AJ On Jan 20, 3:07 pm, Mark Murphy mmur...@commonsware.com wrote: thanks for quick response. This is the url of the image what I am talking about http://developer.android.com/resources/articles/images/list_fade_2.png If you see the background

[android-developers] Re: How to implement FADE effect in background of ListView?

2010-01-20 Thread AJ
Thanks Mark, it worked :) - AJ On Jan 20, 3:20 pm, AJ ajeet.invinci...@gmail.com wrote: Thanks Mark for the info let me try this - AJ On Jan 20, 3:07 pm, Mark Murphy mmur...@commonsware.com wrote: thanks for quick response. This is the url of the image what I am talking about

[android-developers] Re: Browser Name?.

2010-01-25 Thread AJ
Its generally referred as Chrome Lite. But its not the official name. check the link :- http://blogs.zdnet.com/Burnette/?p=662 http://www.androidcentral.com/tags/chrome-lite Thanks AJ On Jan 25, 5:20 pm, Sasikumar.S sasikumar.it1...@gmail.com wrote: Thank U... On Mon, Jan 25, 2010 at 5

[android-developers] Re: How to get webview's content into a bitmap?

2009-09-09 Thread AJ
If somebody knows this, plz help me - AJ On Sep 9, 1:26 pm, Ajeet Singh ajeet.invinci...@gmail.com wrote: Hi gjs, Thanks for pointing that error. But that was a type error. Now I am pasting the correct code here

[android-developers] Kernel Level Changes

2008-05-22 Thread AJ
research using various devices including mobile phones. Thanks, AJ --~--~-~--~~~---~--~~ 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

[android-developers] Android for Research

2008-08-31 Thread AJ
mentioned in point number 2 (that is to have complete source code available and to be able to modify it, even at Kernel level). Thanks a lot. -AJ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Back-porting from Android 2.0 to Android 1.5

2009-12-07 Thread AJ
I have read the website and archives on backporting (building on SDK 2.0 to run on SDK 1.5) and it seems consensus is to change the minimum SDK version required in the manifest (from 5 back to 3) and check for any private API calls. I've done that, but I have two remaining concerns. [Note: I

[android-developers] File Downloads in Android Web Browser

2009-12-07 Thread AJ
is the link :- http://groups.google.com/group/android-developers/browse_thread/thread/cc5745bb3ff5901b/5a5f7a27030bd611?lnk=gstq=RFC+1945+and+RFC+2068+document+protocol+elements+used+by+some#5a5f7a27030bd611 Is this Android Browser issue? Can anybody throw some light on it. Thanks, AJ -- You received

[android-developers] Re: File Downloads in Android Web Browser

2009-12-08 Thread AJ
i hope at least somebody would be having any idea on this. Thanks, AJ On Dec 8, 10:40 am, AJ ajeet.invinci...@gmail.com wrote: Hi All, I have problem in downloading the content when Content-Disposition: attachment is specified in response coming from the server. I searched the forum

[android-developers] Re: Adding button to ListView

2009-12-08 Thread AJ
It looks the following link is explaining what do you want, but i am not sure. Check it. http://www.anddev.org/viewtopic.php?p=28745 Thanks, AJ On Dec 8, 6:59 pm, Abhi abhishek.r.sha...@gmail.com wrote: can anyone help me on this topic please? On Dec 8, 1:06 am, Abhi abhishek.r.sha

[android-developers] Re: File Downloads in Android Web Browser

2009-12-09 Thread AJ
??? On Dec 8, 4:42 pm, AJ ajeet.invinci...@gmail.com wrote: i hope at least somebody would be having any idea on this. Thanks, AJ On Dec 8, 10:40 am, AJ ajeet.invinci...@gmail.com wrote: Hi All, I have problem in downloading the content when Content-Disposition: attachment

[android-developers] Re: Back-porting from Android 2.0 to Android 1.5

2009-12-10 Thread AJ
On Dec 7, 4:25 pm, Dianne Hackborn hack...@android.com wrote: On Mon, Dec 7, 2009 at 1:20 PM, AJ adam.j...@gmail.com wrote: 1) drawable verses the new drawable-* ... if I don't have an icon in drawable.png will my application be icon-less in 1.5? Do I need to copy one of the new icons

[android-developers] Simple Call App - Uri?

2009-12-14 Thread AJ
package com.tests.helloandroid; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.view.KeyEvent; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout;

[android-developers] Re: Simple Call App - Uri?

2009-12-14 Thread AJ
I am trying to make a very very simple app as a beginner but it does not work. The app just has a text bar and a button. Somehow, the call button does not start a call. Help please. package com.tests.helloandroid; import android.app.Activity; import android.content.Intent; import

[android-developers] Re: Simple Call App - Uri?

2009-12-15 Thread AJ
ACTION_DIAL works fine and without any changes to the permissions. thanks a lot --aj On Dec 15, 4:08 am, Mark Murphy mmur...@commonsware.com wrote: AJ wrote: I am trying to make a very very simple app as a beginner but it does not work. The app just has a text bar and a button. Somehow

[android-developers] Does Android Eclair code base support Plugins in Android Browser?

2010-01-10 Thread AJ
for that, but this query asked in Dec'2008. http://groups.google.com/group/android-developers/browse_thread/thread/f46cbfa7da74d34c Any info on this is highly appreciated. Thanks AJ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Does Android Eclair code base support Plugins in Android Browser?

2010-01-12 Thread AJ
Hi group, Any info please. Thanks. - AJ On Jan 11, 11:31 am, AJ ajeet.invinci...@gmail.com wrote: Hi All, I want to know that :- 1- Does Android Browser (Éclair code base) support the plug-in or not? 2- Why Google Gears support is removed from the Éclair code base? I searched the forum

[android-developers] Re: Make menu item disabled

2010-01-14 Thread AJ
Yes it is possible. Check the following link http://developer.android.com/reference/android/view/MenuItem.html#setEnabled(boolean) - AJ On Jan 14, 3:47 pm, fhucho fhu...@gmail.com wrote: Hi, is it possible to disable (gray) a menu item? -- You received this message because you are subscribed

[android-developers] Re: Can I make a Dialog invisible?

2010-08-26 Thread AJ
you can dismiss the parent dialog and then show your child dialog. please check:- http://developer.android.com/reference/android/app/Dialog.html#dismiss%28%29 Thanks, AJ On Aug 26, 11:16 am, Mystique joven.ch...@gmail.com wrote: Hi, I have a parent dialog calling a child dialog. Can I make

[android-developers] Re: How to the GSM signal strength

2010-08-26 Thread AJ
Hi Vinay Check the example @ http://www.firstdroid.com/2010/05/12/get-provider-gsm-signal-strength/ Thanks, AJ On Aug 26, 2:38 pm, Vinay S s.vinay@gmail.com wrote: Hi XC He, Can you please suggest what should be imported to get mPhoneStateReceiver..? Regards, Vinay On Aug 26, 1

[android-developers] Re: Home button in Beagle board

2010-08-27 Thread AJ
from adb shell type the following command adb shell input keyevent 3 Thanks, AJ On Aug 27, 1:15 pm, SREEHARI sreehari.madhusooda...@wipro.com wrote: Hi All, I am testing some android apps in a beagle board with Android 2.1. But I came to know that there is no home button in the board. I

[android-developers] Re: how to know data successfully saved on server

2010-08-30 Thread AJ
You must have written code for posting data to server in a thread. So when you press the BACK key terminate that thread and show a screen that Failure Data posting to server to user Thanks, AJ On Aug 30, 12:00 pm, pramod.deore deore.pramo...@gmail.com wrote: Hi,  In my application I am sending

[android-developers] Re: Want to confirm that app is in background due to Home Key press

2010-08-31 Thread AJ
Hi Mark, In public boolean onKeyDown(int keyCode, KeyEvent event) , I am able to intercept event.KEYCODE_BACK. why I am not able to intercept event.KEYCODE_HOME?? Can you please throw some light on this? Thanks, AJ On Aug 31, 2:35 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Aug

[android-developers] Re: Want to confirm that app is in background due to Home Key press

2010-08-31 Thread AJ
Thanks Mark :) On Aug 31, 3:46 pm, Mark Murphy mmur...@commonsware.com wrote: On Tue, Aug 31, 2010 at 6:42 AM, AJ ajeet.invinci...@gmail.com wrote: In public boolean onKeyDown(int keyCode, KeyEvent event) , I am able to intercept event.KEYCODE_BACK. why I am not able to intercept

[android-developers] Re: Recommendation for an Application with tons of media files

2010-09-06 Thread aj
I think the option of serving media files from a web server could solve your problem, instead of bundling all media files with the app. If you take this approach, you could either stream the media by device, or allow users to download and save the media on sd card. Also, if they accidentally

[android-developers] Re: how do i get xmlresourceparser?

2010-09-06 Thread AJ
getResources(); Thanks, AJ On Sep 7, 9:17 am, ytbryan ytbr...@gmail.com wrote: Hi all, I want to do Resource.getxml(R.xml.stringname); But how do i get to the Resource object? Thanks~! bryan -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: PhotoViewer

2010-09-06 Thread AJ
If you want to display photo one by one then take FrameLayout, else you can take GridLayout. Hope this helps. Thanks, AJ On Sep 7, 10:26 am, dhrumil dhrumilsh...@gmail.com wrote: Hello, Is there anybody who has a knowledge about Photo Viewer in Android. If I want to develop one photo

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-04 Thread AJ
Any help is really appreciated Thanks AJ On Apr 3, 7:00 pm, AJ ajeet.invinci...@gmail.com wrote: Hi group Now I am able to insert 3 phone numbers. But There does not looks a way that How can I enter other phone numbers like :- Work Fax, Home Fax, Pager etc. Any clue please. Here

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-04 Thread AJ
Any clue please regarding my 2 problem Thanks AJ On Apr 3, 7:00 pm, AJ ajeet.invinci...@gmail.com wrote: Hi group Now I am able to insert 3 phone numbers. But There does not looks a way that How can I enter other phone numbers like :- Work Fax, Home Fax, Pager etc. Any clue please

[android-developers] Re: error while calling an activity from another activity

2010-04-04 Thread AJ
Code is:- public class Pwaclient extends Activity { public void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent i=new Intent(v.getContext(),Album.class); What is this v in [(v.getContext()] ? Try this Thanks, AJ -- You received this message

[android-developers] Re: Need Help in File Functions

2010-04-04 Thread AJ
as it is *not* part of android SDK. You can only use this when you are compiling you application with full source code of android in linux environment. Thanks, AJ On Apr 4, 10:11 pm, Kumar Bibek coomar@gmail.com wrote: Not all files will have the permission to edit/delete. You should first check

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-05 Thread AJ
are present in expandable list [more section, that is in Android SDK 2.1] 2- I am *not* able to show more than 3 phone number 3- I am also *not* able to show more that 3 EMail Ids. Thanks for the information. But If you know this then please share with me. Thanks, AJ On Apr 5, 1:10 pm, Girish

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-06 Thread AJ
Hi Group, Any clue please. Thanks, AJ On Apr 5, 7:57 pm, AJ ajeet.invinci...@gmail.com wrote: Hi Girish, Thanks for the reply, But this is not what I am looking for. Actually I am starting contact application from my application with data [like Name, phone numbers(mobile,work,faxes, etc

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-06 Thread AJ
not able to pass Organization , Nickname, Website etc . Girish many many thanks. Pl help me out of this. Thanks, AJ On Apr 6, 10:50 am, Girish girishg...@gmail.com wrote: Hi, You mean do you want to fetch the postal address details and email details. If yes tell me i will give you the code

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-06 Thread AJ
Hi Group, Any clue please. Thanks, AJ On Apr 6, 11:58 am, AJ ajeet.invinci...@gmail.com wrote: Hi Girish, I do *not* want to fetch any postal address from the database. What I want is :- I am launching the Contact App from my application. I want Contact App should appear with the data

[android-developers] Re: How to Launch Contact application displaying multiple phone numbers?

2010-04-06 Thread AJ
Hi group, Any clue please - AJ On Apr 6, 11:58 am, AJ ajeet.invinci...@gmail.com wrote: Hi Girish, I do *not* want to fetch any postal address from the database. What I want is :- I am launching the Contact App from my application. I want Contact App should appear with the data I am

[android-developers] Re: how to find out memory usage by pid?

2010-04-07 Thread AJ
Hi ratson, thanks for sharing the command. When I run that command 7 numbers in a row. They did not have any column name. Can you please tell us what exactly number is for? Thanks, AJ On Apr 7, 10:21 am, ratson materem...@gmail.com wrote: i mean expensive... :) On ápr. 7, 09:15, ratson

[android-developers] Re: how to find out memory usage by pid?

2010-04-07 Thread AJ
I actually want the information regarding foe each column when you issue this command like cat /proc/1976/statm 25930 4123 1825 1 0 2484 0 - AJ On Apr 7, 10:46 am, Rémiás Máté materem...@gmail.com wrote: 2nd from right in kb On Wed, Apr 7, 2010 at 9:45 AM, AJ ajeet.invinci...@gmail.com

[android-developers] Re: how to find out memory usage by pid?

2010-04-07 Thread AJ
yeah i got the info of each column • size total program size • resident resident set size • share shared pages • trs text (code) • drs data/stack • lrs library • dt dirty pages thanks, AJ On Apr 7, 12:25 pm, Rémiás Máté materem...@gmail.com wrote: I

[android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread AJ
Hi David There in Bookmarks [Android Browser] same thing has been done. You can refer that. You can find the code as well. Thanks, AJ On Apr 7, 1:13 pm, David android.and...@gmail.com wrote: Dear All,          I want get both Image and Text from the sqLite database and show them

[android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread AJ
Hi David, Sorry I don't have any such project/source. You can check the following link. It may help you. http://groups.google.com/group/android-developers/browse_thread/thread/0ecad32a314c/8f17cf4ea95964e0?lnk=raot Thanks, AJ On Apr 7, 1:54 pm, David android.and...@gmail.com wrote: Hi AJ

[android-developers] Re: urgent-not able to display remote images in gallery

2010-04-07 Thread AJ
Hi anushree, I have done something like before. But right now I am not able to find that code. If I am able to find it out i will paste the code. Thanks, AJ On Apr 7, 3:35 pm, anushree godbole.anush...@gmail.com wrote: i am storing the imagesurl in an arrayadapter. i want to display all

[android-developers] Problem with Vertical ScrollBar thumb in WebView

2010-04-07 Thread AJ
Hi Group, I have LinearLayout in which I show webview at top and 2 buttons at the bottom. I am load local Html file from my asset folder and it loads properly. But the problem is Vertical scroll bar *thumb* appears quite big as it looks its size does not gets updated. But as soon as I press the

[android-developers] Problem with Vertical Scroll Bar *thumb* in WebView !!!

2010-04-07 Thread AJ
Hi Group, I have Linear Layout in which I show web-view at top and 2 buttons at the bottom. I load local HTML file from my asset folder and it loads properly. But it looks there is a some problem with the Vertical Scroll Bar *THUMB*, which appears quite big as the HTML page loads. But the thumb

[android-developers] Re: Problem with Vertical Scroll Bar *thumb* in WebView !!!

2010-04-08 Thread AJ
. On Apr 8, 2:24 am, AJ ajeet.invinci...@gmail.com wrote: Hi Group, I have Linear Layout in which I show web-view at top and 2 buttons at the bottom. I load local HTML file from my asset folder and it loads properly. But it looks there is a some problem with the Vertical Scroll Bar *THUMB*, which

[android-developers] Re: Problem with Vertical Scroll Bar *thumb* in WebView !!!

2010-04-09 Thread AJ
Any clue guys - AJ On Apr 8, 9:40 am, AJ ajeet.invinci...@gmail.com wrote: My code is like that :- LinearLayout     WebView      TableLayout      TableRow                         Button /                         Button /                 /TableRow         /TableLayout /LinearLayout

[android-developers] Is this is limitation of Eclair [SDK 2.1] in Contact App?

2010-04-25 Thread AJ
,People.CONTENT_URI); i.putExtra(ContactsContract.Intents.Insert.NAME, AJ); // Address-1 i.putExtra(ContactsContract.Intents.Insert.POSTAL, Bangalore-550075); i.putExtra(ContactsContract.Intents.Insert.POSTAL_TYPE, ContactsContract.CommonDataKinds.StructuredPostal.TYPE_WORK); // Address-2 i.putExtra

[android-developers] Is this is limitation of Eclair [SDK 2.1] in Contact App?

2010-04-25 Thread AJ
,People.CONTENT_URI); i.putExtra(ContactsContract.Intents.Insert.NAME, AJ); // Address-1 i.putExtra(ContactsContract.Intents.Insert.POSTAL, Bangalore-550075); i.putExtra(ContactsContract.Intents.Insert.POSTAL_TYPE, ContactsContract.CommonDataKinds.StructuredPostal.TYPE_WORK); // Address-2 i.putExtra

[android-developers] Re: Starting default calendar and contacts application

2010-04-25 Thread AJ
Hi Anurag, You can start the contact activity in the following way:- Intent i = new Intent(Intent.ACTION_INSERT,People.CONTENT_URI); i.putExtra(ContactsContract.Intents.Insert.NAME, AJ); startActivity(i); But I am facing some problem in passing the Extra data to the activity. It looks

[android-developers] Re: Starting default calendar and contacts application

2010-04-26 Thread AJ
On Apr 26, 8:44 am, Kumar Bibek coomar@gmail.com wrote: Contacts, well, It's open for any one to use. What to use. In android SDK 2.1 Contact has lot of Intents missing while launching Contact application. Thanks, AJ -- You received this message because you are subscribed to the Google

[android-developers] Re: how to connect android phone to pc using adb

2010-04-26 Thread AJ
check whether you have installed driver for galaxy-spica properly? Thanks, AJ On Apr 26, 3:19 pm, saikiran n saikiran@gmail.com wrote: Hi all,  I am aunable to connect my phone to pc. I connected it with usb cable to my pc and i opend command prompt where my android sdk is there Now i

[android-developers] Re: Starting default calendar and contacts application

2010-04-26 Thread AJ
@Anurag I didn't need any permission, as my requirement is to launch the Contact App. Thanks, AJ On Apr 26, 4:53 pm, Anurag Singh anusingh...@gmail.com wrote: Thanks Ajeet, have you set permission to write contact in your manifest.xml? - Auurag Singh On Mon, Apr 26, 2010 at 12:07 AM, AJ

[android-developers] Re: problem to install .apk on phone

2010-04-28 Thread AJ
@ Imran When the installation gets failed it shows the error code. Can you check that error code ? Thanks, AJ On Apr 28, 11:11 am, Nandan . bhavesh2...@gmail.com wrote: hi imran when you run a command adb devices it display only connected device and emulator. if u r using eclipse then just

[android-developers] Re: Lighting effects in android

2010-04-28 Thread AJ
@satish If your light travel is same evry time then you can show it 4-5 images as animation. Otherwise you have to write your own code. Thanks, AJ On Apr 28, 11:37 am, satish bhoyar getsatonl...@gmail.com wrote:  yes i want light ray to travel from one position to another. thanks, satish

[android-developers] Re: Lighting effects in android

2010-04-28 Thread AJ
There is a ApiDemo GLSurfaceView - a spinning triangle I hope this would help you. You want something like this. Thanks, AJ On Apr 28, 11:48 am, AJ ajeet.invinci...@gmail.com wrote: @satish If your light travel is same evry time then you can show it 4-5 images as animation. Otherwise you

[android-developers] Re: Cannot Play Audio Files In The RAW Folder

2010-04-28 Thread AJ
Paste some sample code so the people can actually see what is missing from your code. Thanks, AJ On Apr 28, 2:16 pm, arberb beqi...@gmail.com wrote: At the moment im working on an application which uses audio files and the issue is when ever my audio file gets called it gives me this error

[android-developers] Re: I cannot find a complete list of locales.

2010-04-28 Thread AJ
I am also interested to know this. Thanks, AJ On Apr 28, 2:32 pm, Hunter Peress hunt...@gmail.com wrote: Hello. I want to translate my app into all available markets. Now, from the market, we have: English (en_US) | 日本語 (ja_JP) | français (fr_FR) | čeština (cs_CZ) | Español (es_ES

[android-developers] Re: Issue with MediaPLayer

2010-04-28 Thread AJ
/topics/media/index.html Hope this helps you. Thanks, AJ On Apr 28, 2:59 pm, Mihai Fonoage fonoag...@gmail.com wrote: What error do you get? On Apr 26, 7:26 pm, arberb beqi...@gmail.com wrote: This is my script: public class MainActivity extends Activity {     @Override     public

[android-developers] Re: Question on Intents?

2010-09-13 Thread AJ
Hi Arpit, Check lainch modes of an activity (http://developer.android.com/guide/ topics/manifest/activity-element.html#lmode) and the flag FLAG_ACTIVITY_NEW_TASK Thanks, AJ On Sep 13, 11:51 am, Arpit robin.ca...@gmail.com wrote: I have the a scenario where number of Activites are invoked

[android-developers] Re: How to load activity before loading all images?

2010-10-25 Thread AJ
http request to images with some delay. Thanks, AJ On Oct 25, 5:17 pm, rokson kiranrepa...@gmail.com wrote: Hi Friends, I have been struggling with this problem for many days. please help me.. In my android application i am trying to download images from remote server dynamically

[android-developers] Re: how to handle back buttton

2010-10-25 Thread AJ
); } Thanks, AJ On Oct 25, 5:10 pm, RKJ (Android developer) rkjhaw1...@gmail.com wrote: Hi All, I want to handle the back button in customize way. What to do. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: How to handle Home Button

2010-10-25 Thread AJ
Same as I told you in my previous post. Match the keycode with event.KEYCODE_HOME Thanks, AJ On Oct 25, 5:08 pm, RKJ (Android developer) rkjhaw1...@gmail.com wrote: Hi All, I need to handle home button, redirection of home button on customize way.. wt to do. -- You received this message

[android-developers] Re: error code 5: database is locked

2010-10-25 Thread AJ
Hi gcstang, Very basic but check the following:- 1- Is any other app using your DB? 2- Did you close the cursor every time when you opened it? Thanks, AJ On Oct 25, 5:41 pm, gcstang gcst...@gmail.com wrote: ping, anyone that can answer this? On Oct 16, 10:58 am, gcstang gcst...@gmail.com

  1   2   >