[android-developers] Re: Regarding

2009-01-16 Thread James Yum
Hi Naina, The log would be more helpful to you. You can use either adb logcat: http://code.google.com/android/reference/adb.html#logcat or DDMS: within eclipse Window > Open Perspective > DDMS. Cheers, James On Fri, Jan 16, 2009 at 2:01 AM, Naina K wrote: > Hi, > > This is Naina. I went throu

[android-developers] Re: Regarding ListView

2010-03-08 Thread grace
u can change it in the layout file.. try changing the height of the list item, according to the content you are trying to display On Mar 4, 3:52 pm, vinoth wrote: > How to increase the listview item size? When the text to be displayed > is longer, it gets clubbed and could not see the full text

[android-developers] Re: Regarding CTS

2010-03-17 Thread Uander
Navin , Here is my explanation : . build/envsetup.sh It just setup environments for your Android compilation , like on which arch / host you are compiling and whats the target , which version of android file system you have . lunch 1 Its shows you are compiling android for arm target , a gen

[android-developers] Re: Regarding CTS

2010-03-21 Thread navin kumar
Hi umang, Thanks for the reply. I just got it working . I dont know what was wrong for the first time. I just restarted my system and it worked flawlessly. Thanks again. Regards, Navin. On Thu, Mar 18, 2010 at 11:26 AM, Uander wrote: > Navin , > > Here is my explanation : > > . build/envsetup.

[android-developers] Re: Regarding WebGL

2009-11-10 Thread Dilip Dilip
> > Hi , > Does Android browser support WebGL ? How they are planning to do with > WebGL ? any update ?? > > Best Regards, > Dileep > On Mon, Nov 9, 2009 at 1:11 PM, Dilip Dilip wrote: > Hi , > Does Android browser WebGL ? How they are planning to do with WebGL ? > > Best Regards, > Dileep

[android-developers] Re: Regarding Intents

2009-05-25 Thread Dharmesh
You must register your intent in AndroidMenifest.xml file. You can locate this file at the root of your android application. On May 25, 2:05 pm, Bhargavi wrote: > Hi, >   I wrote a new application and i want to send an intent to another > application.is it not enough if i broadcast that intent

[android-developers] Re: Regarding Intents

2009-05-25 Thread Mark Murphy
Dharmesh wrote: > You must register your intent in AndroidMenifest.xml file. > You can locate this file at the root of your android application. This is not required, though it is an option. >> I wrote a new application and i want to send an intent to another >> application.is it not enough if

[android-developers] Re: Regarding intents

2010-02-26 Thread Gaunt Face
To launch a new activity you should be using code something like this: Intent intent = new Intent(getApplicationContext(), ClassNameHere.class); startActivity(intent); Then you also need to add your Activity to the AndroidManifest.xml file, if your using eclipse you can open the AndroidManifest f

[android-developers] Re: Regarding intents

2010-03-01 Thread NewDev
Hi, Thanks for the reply. I have already added the new activity or secocnd activity in the AndroidManifest.xml file. I tried adding getApplicationContext() in the intent. But still its not working. I am herewith adding my code and also the AndroidManifest.xml file for currency convertor. Could yo

[android-developers] Re: Regarding SharedPreferences

2010-01-19 Thread Brion Emde
I gave an answer to your questions in your earlier question on this topic, a few threads back. On Jan 19, 5:49 am, pranav09 wrote: > Hi, > > Can you give me an example with the use of SharedPrefereneces which > store and retrieve the email and password by calling .net web service? > > Thanks. --

[android-developers] Re: Regarding Layout

2011-06-02 Thread Ishwar Chawla
Thanks for the help I am rendering HTML and it is giving good effect! On May 31, 6:48 pm, Kevin Chadwick wrote: > On Mon, 30 May 2011 18:58:36 -0500 > > TreKing wrote: > > Consider an HTML file and rendering it in a WebView. > > With the added benefit of increased/easier recoverability, including

[android-developers] Re: Regarding MediaRecorder

2012-08-14 Thread bob
Probably. When you call MediaRecorder.start, it doesn't block the UI thread. On Tuesday, August 14, 2012 1:34:50 PM UTC-5, Kobi wrote: > > Does anyone knows if the MediaRecorder class execute itself in seperate > thread on in the main thread? > > thanks in advance > > kobi > -- You recei

[android-developers] Re: Regarding profile

2011-10-24 Thread Alex Dsoza
I am looking for the same. Anyone plz help us!!! On Sep 23, 1:16 pm, sourabh sahu wrote: > How to create our own profile with custom settings.Please provide some code > for it. > > THanks, > Sourabh -- You received this message because you are subscribed to the Google Groups "Android Developers

[android-developers] Re: Regarding emulator

2012-05-01 Thread blake
I seldom argue w/Mark... but in this case I think there is a way to do this. The application you've downloaded is in the directory /data/app on the device to which you downloaded it. Use "adb pull" to copy the file to your dev machine. Now use "adb install" to push it to your emulator. Bam! Bo

[android-developers] Re: Regarding emulator

2012-05-01 Thread blake
Ouch. If that is the case, I absolutely do not recommend it. If you've paid for a single copy of the application and/or agreed not to copy it, then you certainly shouldn't do so. The impediment, though, is legal, not technical. In cases where there is no legal impediment, the process of copying

[android-developers] Re: Regarding emulator

2012-05-01 Thread Samuel
That's not software piracy. If you have paid for a copy of the software, it doesn't matter which machine you choose to run it on. On May 1, 10:40 am, Mark Murphy wrote: > On Tue, May 1, 2012 at 10:30 AM, blake wrote: > > I seldom argue w/Mark... but in this case I think there is a way to do > >

[android-developers] Re: Regarding Intents

2012-11-01 Thread G. Blake Meike
Hey Krithika, There really are, already, hundreds of these examples out there. You really just need to look around for one. Marko Gargenta's book, Learning Android is slightly out of date, but it certainly explains this concept beautifully. The examples that come with the ADK illustrate the

[android-developers] Re: Regarding Intents

2012-11-01 Thread bob
Intent intent = new Intent( Intent.ACTION_DIAL, Uri.parse(" tel: 555-2368")); startActivity( intent); *Meier, Reto (2012-04-05). Professional Android 4 Application Development (Wrox Professional Guides) (Kindle Locations 4433-4434). John Wiley and Sons. Kindle Edition. * On Thursday, November

[android-developers] Re: Regarding Activity

2009-01-19 Thread for android
Look at the code for Music app..your requirement is exactly similar to that.. On Mon, Jan 19, 2009 at 3:40 PM, mongd wrote: > > Hi, I'm working on a program which basically plays a video file and > has some more functionality. > What I expect from this program is: > when I start playing a video,

[android-developers] Re: Regarding Activity

2009-01-19 Thread mongd
Thanks for your advice, but I need a lot simpler example. Music application seems big and I have been looking into the source code for a while, but I still don't know how to implement the feature I want. Could you tell me which part do I have to look? That would be a great help! =D On 1월19일, 오후7

[android-developers] Re: Regarding Activity

2009-01-19 Thread jtaylor
I think you should explain what you're saying better. Are you asking how to come back to the video after someone clicks the notification message? Well, the notification can have a PendingIntent attached to it that triggers that activity again. ..However, I think you have to go through and explain

[android-developers] Re: regarding OutOfMemoryException

2009-01-27 Thread Ludwig
I guess the exception tells you that you are over-allocating memory. There are quite strict limits on Android, but your code would fail on any platform (apart from a Turing machine) if the download size is large enough.You will need to loop over the input stream with something like this (no warran

[android-developers] Re: regarding onretainnonconfigurationinstance

2011-01-27 Thread keyboardr
I usually use a wrapper class. Just create a custom NonConfigurationInstance class that has your object array as one of its member variables. On Jan 26, 5:27 pm, som wrote: > Hi Guys, > > I have developed a Paint application on Android. I have reached a > stumbling block now.. I want to retain a

[android-developers] Re: Regarding Database

2011-02-16 Thread DanH
You learn to program. On Feb 16, 4:24 am, yogendra G wrote: > hi, > > Am new to android please help me in my help query: > > *"how to take data from edit text and store it in database*?" > > Regards, > Yogendra G(9916168647) -- You received this message because you are subscribed to the Google

[android-developers] Re: Regarding Intents

2010-07-19 Thread Arjun
Thanks Mark Murphy. On Jul 14, 10:15 am, Mark Murphy wrote: > On Wed, Jul 14, 2010 at 12:53 PM,Arjun wrote: > > I have few intents in my manifest file and an AIR application. How can > > I instantiate AIR application from android. > > You probably should ask Adobe that question. > > -- > Mark Mur

[android-developers] Re: Regarding Certification

2011-01-20 Thread pramod.deore
There is no any certification exam for Android On Jan 20, 2:44 pm, jayavenkat wrote: > Hi, >      I need details about Android certification -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

[android-developers] Re: Regarding Process Context

2009-09-23 Thread Mark Murphy
> I have created a Separate Process in Android Java Framework Layer. Why? Processes are expensive and generally should not be needed, beyond the one Android allocates for you as part of your app instance. > Now, I registered new receiver in System Server for my Process and > calling my process m

[android-developers] Re: Regarding Process Context

2009-09-23 Thread Dianne Hackborn
I think they are talking about modifying the platform (system service is the main process that runs the system services), in which case this should be moved to android-porting. Also processes do not have contexts, so if you post to android-porting it would be good to explain in more detail what yo

[android-developers] Re: Regarding Process Context

2009-09-23 Thread Raghu
ok thank you. i will post to android posting group On Sep 24, 2:12 pm, Dianne Hackborn wrote: > I think they are talking about modifying the platform (system service is the > main process that runs the system services), in which case this should be > moved to android-porting. > > Also processes

[android-developers] Re: regarding phone calling

2009-10-08 Thread manoj
Hi basically, what I am looking for is when some one dials a phone number, then my app should be launched. how to do it? thanks, Manoj. On Oct 9, 9:50 am, manoj wrote: > Hi all, > > I have a requirement as given below: > > 1. I have to show the phone dialer screen. after giving the phone > num

[android-developers] Re: regarding phone calling

2009-10-08 Thread manoj
Hi basically, what I am looking for is when some one dials a phone number, then my app should be activated. How can I achieve this? thanks, Manoj. On Oct 9, 9:50 am, manoj wrote: > Hi all, > > I have a requirement as given below: > > 1. I have to show the phone dialer screen. after giving the

[android-developers] Re: regarding phone calling

2009-10-09 Thread manoj
is anybody dont know how to intercept out going calls. I mean when we dial a phone number instead of going to the android's InCallScreen app, my own app should be launched. how to do it? Thanks, Manoj. On Oct 9, 10:15 am, manoj wrote: > Hi basically, what I am looking for is when some one dia

[android-developers] Re: regarding phone calling

2009-10-09 Thread Mark Murphy
manoj wrote: > is anybody dont know how to intercept out going calls. It is not possible from the SDK. > I mean when we dial a phone number instead of going to the android's > InCallScreen app, my own app should be launched. > > how to do it? You can create your own firmware based on http://so

[android-developers] Re: regarding phone calling

2009-10-09 Thread Yusuf Saib (T-Mobile USA)
Or you could make your own custom activity that borrows code from the Android dialer source. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-

[android-developers] Re: Regarding BroadCast Receiver

2011-07-04 Thread Thomas Economous
You should create a service to start the activity instead. Your broadcast receiver should call the service. On Jun 2, 2:50 am, Incredible wrote: > Can't we invoke an activity usingBroadcastreceiver. The onReceive > forBroadCastreceiverwill be triggered whenever user presses power > button. --

[android-developers] Re: Regarding bluetooth printing

2013-02-05 Thread bob
Create an RFCOMM socket to the MAC address of the printer. Then send the string "Hello World" to the socket. I think it will print it. For more complex printing, maybe send PostScript? On Monday, February 4, 2013 11:44:50 PM UTC-6, sourabh wrote: > > Dear All, > > I am looking for soluti

[android-developers] Re: Regarding bluetooth printing

2013-02-05 Thread sourabh sahu
Thanks, but I want free third party API, please suggest. On Tuesday, February 5, 2013, Kristopher Micinski wrote: > I'd suggest using the Google Cloud Printing intent, as it will have a > more ubiquitous look and feel for your users. It will also absolve > you from worries about permissions rel

[android-developers] Re: Regarding Bitmap size

2012-03-13 Thread Zsolt Vasvari
Ok, so do that. On Wednesday, March 14, 2012 12:54:10 PM UTC+8, android devloper wrote: > > Hi, > > I have a problem in calculating bit map size in run time,When the activity > starts bit map will syncs ,accordingly i want to show the bit map size. > > Thanks. > -- You received this message be

[android-developers] Re: Regarding copy right

2012-02-15 Thread JackN
The procedure is document here http://www.copyright.gov/ On Feb 15, 5:09 am, Dhaval Varia wrote: > I m planning to publisb my app on amazon store. > So i need to take  copy right for my app. > What is its procedure ? > Plz help me to know... > Thanx in advance.. -- You received this message be

[android-developers] Re: Regarding copy right

2012-02-15 Thread Lew
Are you sure the OP was asking about U.S. law? JackN wrote: > > The procedure is document here > > http://www.copyright.gov/ > > Dhaval Varia wrote: > > I m [sic] planning to publisb my app on amazon [sic] store. > > So i [sic] need to take copy right [sic] for my app. > > What is its pro

[android-developers] Re: Regarding copy right

2012-02-15 Thread JackN
I am not sure what the OP is talking about at all. I don't think they do either. On Feb 15, 10:07 am, Lew wrote: > Are you sure the OP was asking about U.S. law? > > JackN wrote: > > > The procedure is document here > > >http://www.copyright.gov/ > > > Dhaval Varia wrote: > > > I m [sic] plannin

[android-developers] Re: Regarding copy right

2012-02-15 Thread John Coryat
Perhaps fork code? -- 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+unsubscr...@googlegroups.com For mo

[android-developers] Re: Regarding game application.

2012-07-17 Thread iconapp 2010
On Tue, Jul 17, 2012 at 5:53 PM, iconapp 2010 wrote: >Actually I am working for a game application called "NFC Hunter". In > that of first screen there is a panel at the middle. by touching on that > the original game has to came into picture. > >For more clarity on this go through th

[android-developers] Re: Regarding Call Intent

2011-10-22 Thread Anieeh
Hi Nageswara i hope i am getting your point of problem. Its very simple just call this intent and start an activity Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse("tel:*Your Tel ph. No*")); startActivity(callIn

[android-developers] Re: Regarding Dynamic layout

2011-10-27 Thread viktor
And what is the problem? Use LayoutInflater.inflate, build your Layout to the View object and add under Spinner. You should get index of Spinner, and add view by index. On 27 Жов, 09:21, nageswara rao rajana wrote: > Hi, > >          when i select a option from a spinner a  layout xml file  sh

[android-developers] Re: regarding image conversion

2011-09-05 Thread Zsolt Vasvari
There are about 5 steps to do what you want? Woiuld you like sample code to all of them, or just some of them? On Sep 5, 2:47 pm, nageswara rao rajana wrote: > Hi, > >        I developed an application on API level-7. My problem is i want to > send an image from sd card to web service (.NET). So

[android-developers] Re: Regarding Google Map

2011-09-29 Thread lbendlin
this should get you started http://blog.pocketjourney.com/2008/03/19/tutorial-2-mapview-google-map-hit-testing-for-display-of-popup-windows/ -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

[android-developers] Re: Regarding Google Map

2011-09-30 Thread Adam Ratana
On Thursday, September 29, 2011 7:39:08 PM UTC-4, nageswara rao rajana wrote: > I developed an application when i am walking for every 50 meters of > distance a marker is displaying on google map. > Now my request is that when i tap on any marker a pop should display > like a user form

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread Mark Murphy
On Tue, May 1, 2012 at 10:30 AM, blake wrote: > I seldom argue w/Mark... but in this case I think there is a way to do > this.  The application you've downloaded is in the directory /data/app > on the device to which you downloaded it.  Use "adb pull" to copy the > file to your dev machine.  Now u

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread venugopal peparthi
hi friend, to download .apk from emulator first click on browser login into android market and download .apk and then install. Thanks, venugopal.p. On Tue, May 1, 2012 at 8:00 PM, blake wrote: > I seldom argue w/Mark... but in this case I think there is a way to do > this. The

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread sourabh sahu
The thing I am not able to download it on emulator.There is no market app icon on emulator.and If I go to market.android.com and then if I select and app and click on install it need a device. Please give some solution to it. Thanks in advance. sourabh On Tue, May 1, 2012 at 8:13 PM, venugopal p

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread Mark Murphy
On Tue, May 1, 2012 at 2:26 PM, Samuel wrote: > That's not software piracy. > If you have paid for a copy of the software, it doesn't matter which > machine you choose to run it on. You are welcome to your opinion. The authors of the software in question (who are the ones determining the nature o

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread Justin Anderson
Software piracy is, simply put, the unauthorized copying of software... So, if copying it to put it on the emulator is not authorized by the developer, then that is piracy. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, May 1, 2012 at 1:54 PM, Mark

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread Mark Lapasa
Is it software piracy if the software is free on Google Play? On Tuesday, May 1, 2012 3:57:49 PM UTC-4, MagouyaWare wrote: > > Software piracy is, simply put, the unauthorized copying of software... > So, if copying it to put it on the emulator is not authorized by the > developer, then that i

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread Justin Anderson
> > Is it software piracy if the software is free on Google Play? > Well, since the definition is "unauthorized copying of software" that would depend on each individual developer. I have a free app on Google Play and I personally wouldn't care (as long as you weren't trying to reverse engineer my

Re: [android-developers] Re: Regarding emulator

2012-05-01 Thread Justin Anderson
And that is why Mark suggested contacting the developer first... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, May 1, 2012 at 3:52 PM, Justin Anderson wrote: > Is it software piracy if the software is free on Google Play? >> > Well, since the def

Re: [android-developers] Re: Regarding emulator

2012-05-02 Thread b0b
On Tuesday, 1 May 2012 16:40:21 UTC+2, Mark Murphy (a Commons Guy) wrote: > > > I seldom argue w/Mark... but in this case I think there is a way to do > > this. The application you've downloaded is in the directory /data/app > > on the device to which you downloaded it. Use "adb pull" to copy

Re: [android-developers] Re: Regarding emulator

2012-05-02 Thread Justin Anderson
Unfortunately, the definition of software piracy has nothing to do with whether it is free or not: http://dictionary.reference.com/browse/software+piracy?s=t And that link references you to "software theft," which says this: *"Unauthorised duplication and/or use of computer** software."* Here is

Re: [android-developers] Re: Regarding emulator

2012-05-02 Thread sourabh sahu
I just want to download a free app on emulator..Can anybody suggest me how to do it.. On Wed, May 2, 2012 at 8:46 PM, Justin Anderson wrote: > Unfortunately, the definition of software piracy has nothing to do with > whether it is free or not: > http://dictionary.reference.com/browse/software+pir

Re: [android-developers] Re: Regarding emulator

2012-05-02 Thread Lew
People have given you several suggestions already. What is wrong with the suggestions offered so far? Have you even tried them? -- Lew On Wednesday, May 2, 2012 10:26:52 AM UTC-7, sourabh wrote: > > I just want to download a free app on emulator..Can anybody suggest me how > to do it.. > > On

Re: [android-developers] Re: Regarding emulator

2012-05-02 Thread b0b
On Wednesday, 2 May 2012 17:16:24 UTC+2, MagouyaWare wrote: > > Unfortunately, the definition of software piracy has nothing to do with > whether it is free or not: > http://dictionary.reference.com/browse/software+piracy?s=t > > And that link references you to "software theft," which says this:

Re: [android-developers] Re: Regarding emulator

2012-05-02 Thread sourabh sahu
Finally I got the app player from bluestacks.com which solved my problem. Thank you all. Sourabh On Thu, May 3, 2012 at 5:32 AM, b0b wrote: > > > On Wednesday, 2 May 2012 17:16:24 UTC+2, MagouyaWare wrote: >> >> Unfortunately, the definition of software piracy has nothing to do with >> whether

[android-developers] Re: Regarding ASOP build

2012-05-16 Thread RichardC
start here http://source.android.com/index.html On Wednesday, May 16, 2012 5:53:53 PM UTC+1, sourabh wrote: > > Can I build android source code for ICS on a device with Android froyo. > If yes please explain how? > > Thanks in advance, > Sourabh > -- You received this message because you are sub

[android-developers] Re: regarding sqlite database

2011-07-21 Thread lbendlin
keep the image in the documents folder, and store the pointer in the database. -- 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 em

[android-developers] Re: Regarding User Authentication

2011-07-27 Thread nirm
Hello List httpparams = new ArrayList(); httpparams .add(new BasicNameValuePair("user", androidUser)); httpparams .add(new BasicNameValuePair("pass", androidpassword)); URI uri = URIUtils.createURI("http", "yourUrl", -1, "/ youractionOrPage", URLEncodedUtils.format(httpparams , "UTF-8"), null)

[android-developers] Re: Regarding NFC Demo

2011-08-03 Thread nadam
You don't have to copy anything manually like that when using Eclipse. Just create a new Android project and in the wizard select build target Android 2.3 (or higher) and then selecte "Create project from existing sample" and select NFCDemo. You can run your app directly from Eclipse: http://devel

[android-developers] Re: Regarding .apk files

2008-12-10 Thread fadden
On Dec 10, 5:08 am, Naina <[EMAIL PROTECTED]> wrote: > I would like to know, if i have only .apk file with me, how to get the > APIs and Classes that are present in the .apk file. Please let me know > if anybody has any idea. There are two utility programs built in the open-source tree, "dexlist"

[android-developers] Re: Regarding .apk files

2008-12-10 Thread Naina K
Hello, Thanks for the quick reply . Is there a way to register ( suppose our application ) ourselves and get the information about the apis called from another application ( using apks ). The intention is to find out that the application is not doing any malicious calls which it is not suppose

[android-developers] Re: Regarding .apk files

2008-12-11 Thread Al Sutton
Naina, I'd see any attempt to by one application to monitor the calls made by another application outside of a debug environment as a security concern because those calls may contain sensitive information which I only want the specified application to use (e.g. passwords for accounts which get

[android-developers] Re: Regarding .apk files

2008-12-11 Thread Naina
No. we are not writing any antivirus or anti-spy applications. Requirement is given a set of tasks application is suppose to do we need to ensure the application is doing same and not beyond that. We will be using package file for the verification( something like sysinternals for win APIs ) Hope

[android-developers] Re: Regarding android registration

2008-12-19 Thread Xavier Mathews
Android is open but it is also set you can not communicate properly unless useing intents etc. So therefor you can not register or install your app on the platform that is how it was created and set up. On 12/19/2008, Mark K wrote: > > > In general, this can't be done, the only way for

[android-developers] Re: Regarding android registration

2008-12-19 Thread Mark K
In general, this can't be done, the only way for apps to comunicate is via aidl, if another app, or built in app doesn't implement an aidl interface that you can reach, then the only way for apps to communicate is via intents. Some information can be sent with intents using 'extras', and applic

[android-developers] Re: Regarding .apk files

2008-12-24 Thread Naina K
Hello, If I have an .apk file for android application, I would like to know how can I convert this .apk file to .java file so that I can see the code in that application. I have tried using dexdump to get the .dex file, but I am not getting the proper results. Please let me know if anybody has wo

[android-developers] Re: Regarding .apk files

2008-12-24 Thread Ralf
There is no converter from dex to java. Feel free to write one. R/ On Wed, Dec 24, 2008 at 5:11 AM, Naina K wrote: > > Hello, > > If I have an .apk file for android application, I would like to know > how can I convert this .apk file to .java file so that I can see the > code in that applicati

[android-developers] Re: Regarding application resume

2009-02-23 Thread dillirao malipeddi
try to keep one mediaplayer object ie define a separate class and stroe mediaplayer object as static in that use that object every time and also store the currently playing file name when the your player screeen starts again check for previous file and curent file if they are equal dont start the

[android-developers] Re: Regarding push notification....

2016-03-06 Thread deepank dwivedi
Use GCM to notify the android client when there is any updation in table , use broadcast there to generate any notification or operation . On Sunday, 6 March 2016 15:28:14 UTC+5:30, DoN KaRThi wrote: > > Dear friends, > i want to send a push notification only where there is updation >

Re: [android-developers] Re: regarding onretainnonconfigurationinstance

2011-01-27 Thread TreKing
On Thu, Jan 27, 2011 at 4:58 PM, keyboardr wrote: > I usually use a wrapper class. Just create a > custom NonConfigurationInstance class that has your object array as one > of its member variables. > Why? -

Re: [android-developers] Re: Regarding Database

2011-02-17 Thread A N K ! T
its a tough question...:P do one thing 1 first read about Edittext class and its methods... 2 den read about what is database and how it is work in android... but before that please try to know what is Classes, what is methods and what is objects...and how u can use these things .. then probabl

Re: [android-developers] Re: Regarding Database

2011-02-17 Thread arun scaria
try to get basic concepts from http://developer.android.com http://www.anotherandroidblog.com/2010/08/04/android-database-tutorial/ do u want it more easy?? try http://www.reigndesign.com/blog/using-your-own-sqlite-database-in-android-applications/ -- Arun Scaria, Project Head, MEC Association

[android-developers] Re: Regarding C2DM Registration

2011-03-01 Thread Kiran
I want to use Multiple Sender IDs for same application and my client can use any of this id to get registered. Is this possible? On Mar 1, 2:12 pm, Kiran wrote: > Hi, > > I have following test case for C2DM. > >     I want to sign up my application on Google C2DM server AND also > want to registe

[android-developers] Re: Regarding C2DM Registration

2011-03-01 Thread Kiran
I want to use Multiple Sender IDs for same application and my client can use any of this id to get registered. Is this possible? On Mar 1, 2:12 pm, Kiran wrote: > Hi, > > I have following test case for C2DM. > >     I want to sign up my application on Google C2DM server AND also > want to registe

[android-developers] Re: Regarding language support

2010-07-09 Thread Károly Holczhauser
Hi all! I also interested in the chat, how can I write an application witch is supporting the multi language ? If we are in sweden I have to display in that language else I need to use the English language. I think, I should use the string.xml, but how ? How can I define there two or more languag

[android-developers] Re: Regarding language support

2010-07-09 Thread Károly Holczhauser
Hi! I had found the solution: http://developer.android.com/resources/tutorials/localization/index.html On júl. 9, 19:36, Károly Holczhauser wrote: > Hi all! > >  I also interested in the chat, how can I write an application witch > is supporting the multi language ? If we are in sweden I have to

[android-developers] Re: Regarding the surfaceview

2010-07-27 Thread tobias429
Had a similar issue. I think the problem is not that the callback method is not called, but rather that when a surfaceView gets destroyed and a new one created, also a new handler is created. See here for a solution to this that worked for me: http://groups.google.com/group/android-developers/brow

[android-developers] Re: Regarding Gallery3D application

2010-10-09 Thread JerryZhang
i want find the documentation about Gallery3D source too.please help me if any. On 9月16日, 下午9时59分, Girish H T wrote: > Hello all, > > I was going through the code on Gallery3D from cooliris. Is there any > detailed level documentation that is available on internet ? I want details > like how the

[android-developers] Re: Regarding Image View

2010-10-10 Thread Jitesh mishra
One more thing I would like to ask,does android support gif format? I tried once in my app but it was not showing any flash image effect, instead it just gave the effect of a jpg or any other image. So ,how to get flash image effects in android. thanks On Oct 10, 12:52 pm, Jitesh mishra wrote: >

[android-developers] Re: Regarding Image View

2010-10-10 Thread Indicator Veritatis
Well, of course it is possible. It is also possible to sit on a hedgehog, but I would not recommend that either;) You really need to define your question better. I strongly recommend reading http://www.catb.org/esr/faqs/smart-questions.html before posting to this thread again. For as it is, the th

[android-developers] Re: regarding stopping service

2010-06-22 Thread vineet
Really thanks for your prompt reply. basically i am .net professional moved into android.. it seemed to be little odd, but like in .net we have a method called oncancel and if we return false the activity wont end. do we have similar option in android what i wanted is if not possible service

[android-developers] Re: Regarding Screen Resolution

2011-03-14 Thread perumal316
Which device are you using? On Mar 14, 4:30 pm, yogendra G wrote: > Hi All, > > I Get My Screen opened full screen whenever i start a project every time so > how can i get it small screen by default when ever i open my projct. > > Regards, > Yogendra G -- You received this message because you a

[android-developers] Re: Regarding Screen Resolution

2011-03-14 Thread perumal316
You may want to try specifying in the AndroidManifest.xml file. See: http://developer.android.com/guide/practices/screens_support.html Hope it helps. Regards, Perumal On Mar 14, 4:55 pm, yogendra G wrote: > Hi, > In My emultor am getting tht problem wenever i open with eclipse and run a > pgm

[android-developers] Re: Regarding screen resolution

2011-03-27 Thread Nicholas Johnson
Different screen resolutions started to get support in API Level 4 (1.6). So, I recommend using API Level 4 and then reading the documention on the Android Dev site. It's really good. Nick -- You received this message becaus

[android-developers] Re: Regarding screen resolution

2011-03-28 Thread KPBird
Hello, My suggestion is to download Android OS source code and go to packages- >apps. you can find all default application's source code. refer this link to download Android OS source code http://source.android.com/source/download.html Regards KPBird On Mar 27, 9:02 pm, Laxmi Verma wrote: > Hi

[android-developers] Re: Regarding language change notification

2010-03-30 Thread Paul Turchenko
override onConfigurationChanged() On Mar 30, 11:51 am, Dilip Dilip wrote: > Hi All, >  How to recieve the language change notification in my service? > I want to get a notification to my service whenever the user changes the > phone language. > > Thanks and Regards, >   Dileep -- You received t

[android-developers] Re: Regarding LBS - MASF client

2009-03-15 Thread Alex B
Hi, Kumar. See: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=location/java/com/android/internal/location/LocationMasfClient.java The comment there says: "Service to communicate to the Google Location Server (GLS) via MASF server" and according to a quick web search, MA

[android-developers] Re: Regarding Device level APIs

2009-04-27 Thread MrSnowflake
A device driver should be written in C, but then you need to do it in the source of android and build your own Android. You can't write device drivers(/modules) using the Android application SDK. On 25 apr, 10:37, GKM wrote: > Hi All, > > I am new to Android. Please clear my doubts. > > I could

[android-developers] Re: Regarding the Java Version

2009-08-12 Thread Fred Grott(shareme)
n command line what does java -version command produce? On Aug 12, 8:07 am, Vinu wrote: > Hello, > > I am trying to compile the Latest android & i got the below errors, > > > You are attempting to build with the incorrect version > of

[android-developers] Re: Regarding the Java Version

2009-08-12 Thread Yusuf Saib (T-Mobile USA)
As you probably already know, you don't need to build the Android source to develop apps, you just need to install the prebuilt SDK. You should post Android platform building questions to the android- platform mailing list. And I should not answer them here either, but here goes anyway: You may b

[android-developers] Re: Regarding the Java Version

2009-08-14 Thread Anand
Hi All, I also faced the same issue, however below command worked for me. My box is Ubuntu 8.04. $ sudo apt-get install git-core gnupg sun-java5-jdk flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev $ sudo update-java-alternatives -s jav

[android-developers] Re: Regarding the Java Version

2009-08-14 Thread Roman ( T-Mobile USA)
You can install java 1.5 and java 1.6 on your system. Setup an environment variable which supports the selection of the Java version which you want to use. If you do development on the SDK/platform switch to 1.5, for app development switch to 1.6. For example on my MAC I find the 1.6 bin in /S

[android-developers] Re: regarding kSOAP web services.

2009-07-31 Thread sagten
I successfully called some relatively complex webservices with kSOAP2. SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); request.addProperty([PropertyInfo object], [SoapObject object]); SoapSerializationEnvelope envelope = new SoapSerializationEnvelope (SoapEnvelope.VER11); envelope

  1   2   3   >