Re: [android-developers] Problem in getting Android source code from Google repo

2011-11-13 Thread chengdong diao
see the http://source.android.com dowload , the url has changed 2011/11/11 srinivasan shanmugam srinivasan@gmail.com Hi, As specified in the i.MX Android R9.4 User Guide in section 2. Build Android for i.MX 2.1 Get Android Source Code (Android/Kernel/U-Boot) While getting the

[android-developers] Questions about SDK and SDK update

2011-11-13 Thread Pedro Teixeira
Hello. I have a probably silly question but programming have never been my strongest area..definitely. I started programming 2 years ago and I was using Google APIs - Android 1.6 I get that the SDK has evolved much more ever since. Can I update the SDK? Is it possible to do it from Eclipe? I

Re: [android-developers] Questions about SDK and SDK update

2011-11-13 Thread Mark Murphy
On Sun, Nov 13, 2011 at 5:21 AM, Pedro Teixeira pedroteixeir...@gmail.com wrote: I started programming 2 years ago and I was using Google APIs - Android 1.6 I get that the SDK has evolved much more ever since. No, the Android 1.6 SDK is probably the same as the Android 1.6 SDK was back when

Re: [android-developers] Location - GPS/Network

2011-11-13 Thread Mark Murphy
Your Location will be null most of the time, given this code. If your first getLastKnownLocation() returns null, you can then call requestLocationUpdates() (as you are), but then you *still* will not have a location until your GeoUpdateHandler is called with onLocationChanged(). Locations are not

Re: [android-developers] transferring information from one application to another

2011-11-13 Thread Narendra Singh Rathore
Thank you all... NSR -- 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

[android-developers] Sharekit for Android yet?

2011-11-13 Thread bob
Anyone know if there is something like Sharekit for Android yet? I'm in a major time crunch and could really use this. I need something really legit though - can't afford to waste time with some buggy rubbish. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Sharekit for Android yet?

2011-11-13 Thread Mark Murphy
On Sun, Nov 13, 2011 at 8:30 AM, bob b...@coolgroups.com wrote: Anyone know if there is something like Sharekit for Android yet? The closest Android equivalent is ACTION_SEND: http://www.openintents.org/en/node/121 Whatever applications are installed and configured that can share your content

Re: [android-developers] Swipe gesturing to switch between tabs

2011-11-13 Thread Bishan
thanks srinivas. On 11/11/11, venkata srinivas namburi srinivase...@gmail.com wrote: Hi Bishan, I guess there is sample application using fragments,which walks you through the swipe gesture in tabs( FragmentTabsPager.java). On Fri, Nov 11, 2011 at 3:09 PM, Bishan tvbis...@gmail.com wrote:

[android-developers] Augmented reality: using camera feed as texture

2011-11-13 Thread Nickw
Hi, Posted on this a while back but I've been doing some more work on it since. The aim of the augmented reality app I'm developing is to overlay geographical data (roads, hiking trails) on a camera feed for navigation. Following other examples on the web, I've decided to use the raw camera feed

[android-developers] Threads in Android (NetworkOnMainThreadException with Javamail) acting very strange

2011-11-13 Thread Stelios
I am a beginner in Android platform and i have encountering a serious problem. I want to fetch emails from gmail and therefore i have created a class that does that. However when i run my class in android NetworkOnMainThreadException. So i have created new Thread with a new Runnable as below :

[android-developers] Two active surfaceViews on top of one another

2011-11-13 Thread Rajeev Ranganathan
Hello everyone, We are developing a video teleconferencing Solution,where the camera preview(a Surface view) should come on top of another surface view which shows the other peer in conversation.So,I just wanted to know,if it is possible to render a video content on a surface view ,on top of

[android-developers] SeekBar

2011-11-13 Thread New Developer
Not sure if this is an Android 3.2 thing or because I am building the layout pro grammatically But I have a SeekBar and the bar appears as a line with a green circle NOT the standard rectangle with orange fill with rectangle slider. Also What do you use to create a slider button ON --

Re: [android-developers] SeekBar

2011-11-13 Thread Mark Murphy
On Sun, Nov 13, 2011 at 10:13 AM, New Developer secur...@isscp.com wrote: Not sure if this is an Android 3.2 thing  or  because I am building the layout pro grammatically But I have a SeekBar  and the bar appears as a line with a green circle NOT the standard  rectangle with orange fill  

[android-developers] Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread kevin
Hi All, I am working for a phone manufacture which has some Android phone products. There is a feature require us to capture keyboard input in the browser. We can install the default browser comes with Android system or other third party open source browser, either way we want to utilize a MATURE

[android-developers] not detecting device my ecilpse

2011-11-13 Thread jaggu
my eclipse not detecting device for debugging mode please help -- 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] gps

2011-11-13 Thread jaggu
how to find gps in emulator with xml response please help me -- 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

Re: [android-developers] Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread Mark Murphy
Why do you need this, and why would users want this? On Sun, Nov 13, 2011 at 10:36 AM, kevin kevin_x...@yahoo.com wrote: Hi All, I am working for a phone manufacture which has some Android phone products. There is a feature require us to capture keyboard input in the browser. We can install

[android-developers] Re: onCreate vs onStart

2011-11-13 Thread Streets Of Boston
What Mark said below :) And note that when the onStart is called, the activity becomes visible. When the onResume is called, the activity is about to receive focus (becomes for target user interaction). E.g. when a dialog-style activity (an activity with a partial transparent background) is

[android-developers] Re: Two active surfaceViews on top of one another

2011-11-13 Thread Streets Of Boston
I've been able to put regulars views on top of a Surface view. That's easy. Just create a layout with that has many views with one Surface view. However, putting multiple surface views in one Window (one activity), e.g. a video view on top of an opengl view... no success. The seconds surface

Re: [android-developers] Re: onCreate vs onStart

2011-11-13 Thread Kostya Vasilyev
+ onRestart(): update the UI and data state (if needed) in case the user switched away from the activity and came back. 2011/11/13 Streets Of Boston flyingdutc...@gmail.com What Mark said below :) And note that when the onStart is called, the activity becomes visible. When the onResume is

[android-developers] Re: Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread kevin
This is our feature requirement, I am sorry this is not a open information. Kevin On 11月14日, 上午12时01分, Mark Murphy mmur...@commonsware.com wrote: Why do you need this, and why would users want this? On Sun, Nov 13, 2011 at 10:36 AM, kevin kevin_x...@yahoo.com wrote: Hi All, I am

Re: [android-developers] Re: Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread Mark Murphy
On Sun, Nov 13, 2011 at 11:20 AM, kevin kevin_x...@yahoo.com wrote: This is our feature requirement, I am sorry this is not a open information. The reason I ask is because it sounds a lot like spyware. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

[android-developers] ANDROID TOAST ARRAYLIST NULL POINTER

2011-11-13 Thread Graham Bright
Hi I get a null point exception with the following code can anyone help ? I want to go through my array items and print each item to the user using a toast message Thanks Graham package gb.org; import java.util.Arrays; import java.util.ArrayList; import android.widget.Toast; import

[android-developers] emulator sdcard setup to run my app

2011-11-13 Thread jaggu
[2011-11-13 22:50:47 - Wtsampler] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE [2011-11-13 22:50:47 - Wtsampler] Please check logcat output for more details. [2011-11-13 22:50:47 - Wtsampler] Launch canceled hi i have got this error like when iam excuting the my application even i

[android-developers] Re: ANDROID TOAST ARRAYLIST NULL POINTER

2011-11-13 Thread Lew
Graham Bright wrote: Hi I get a null point exception [sic] with the following code can anyone help ? I can point out a few things wrong here that probably contribute to it, but your code is badly formatted and incomplete, making it difficult for one to be sure one has the right answer.

Re: [android-developers] Re: Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread Jim Graham
On Sun, Nov 13, 2011 at 11:27:48AM -0500, Mark Murphy wrote: On Sun, Nov 13, 2011 at 11:20 AM, kevin kevin_x...@yahoo.com wrote: This is our feature requirement, I am sorry this is not a open information. The reason I ask is because it sounds a lot like spyware. Whether corporate abuse or

Re: [android-developers] Re: onCreate vs onStart

2011-11-13 Thread TreKing
On Sun, Nov 13, 2011 at 10:18 AM, Kostya Vasilyev kmans...@gmail.comwrote: + onRestart(): update the UI and data state (if needed) in case the user switched away from the activity and came back. Is there a benefit to this over just using onStart(), which will also be called in this scenario?

Re: [android-developers] gps

2011-11-13 Thread TreKing
On Sun, Nov 13, 2011 at 9:59 AM, jaggu mjagadeeshb...@gmail.com wrote: how to find gps in emulator with xml response please help me Your question makes no sense. http://www.catb.org/~esr/faqs/smart-questions.html

Re: [android-developers] Re: onCreate vs onStart

2011-11-13 Thread Kostya Vasilyev
onStart gets called during the initial startup. onRestart does not, it's strictly for the went away and came back case. Using it instead onStart / onResume would depend on how the code is structured, the motivation being, to not repeat any time-consuming operations that were already done in

Re: [android-developers] SeekBar

2011-11-13 Thread New Developer
On 11/13/2011 10:17 AM, Mark Murphy wrote: On Sun, Nov 13, 2011 at 10:13 AM, New Developersecur...@isscp.com wrote: Not sure if this is an Android 3.2 thing or because I am building the layout pro grammatically But I have a SeekBar and the bar appears as a line with a green circle NOT the

Re: [android-developers] Re: onCreate vs onStart

2011-11-13 Thread TreKing
Gotcha - thanks! - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the

[android-developers] MediaMetadataRetriever does this work ?

2011-11-13 Thread New Developer
Called from a class that implements ImageView @Override protected void onDraw(Canvas canvas) { Log.e(Video Media , on Draw Called); super.onDraw(canvas); Log.e(Media, drawstep 2); if (isPlaying) loadFrame(); Log.e(Media, drawstep 3); } private

[android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-11-13 Thread Michel
Thanks Peter! Anyone from Sony who could confirm whether these drivers are compatible with the XPeria Active model? -- 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

[android-developers] How to reload app without restarting emulator

2011-11-13 Thread Sunghun Park
Hi everyone. I've just started Android programming. I want to reload my app without restarting emulator. I've tried it, but it did not work. Someone I know says he always refresh app by just running the app again without any restarting of emulator. It is very annoying to restart emulator whenever

Re: [android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-11-13 Thread Peter Nielson
Have you tried pc companion for the Active? http://www.sonyericsson.com/cws/support/mobilephones/downloads/subject/pccompanion/xperia-active?cc=gblc=en On Nov 13, 2011 3:45 PM, Michel machsgu...@gmail.com wrote: Thanks Peter! Anyone from Sony who could confirm whether these drivers are

Re: [android-developers] SeekBar

2011-11-13 Thread Mark Murphy
On Sun, Nov 13, 2011 at 3:56 PM, New Developer secur...@isscp.com wrote: Thanks  anyway to change the styling back to the older version ? Possibly, though I haven't looked to see how. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] How to reload app without restarting emulator

2011-11-13 Thread Mark Murphy
This usually happens automatically. If you are using Eclipse, sometimes Eclipse doesn't think you changed anything (e.g., perhaps you only touched the manifest), and so it will not re-install the APK. Normally, it will, and running ant debug install from the command line always reinstalls the app.

[android-developers] Re: SDK 4, R15, where is the navigation button?

2011-11-13 Thread sblantipodi
Bump. On Nov 9, 12:12 am, sblantipodi perini.dav...@dpsoftware.org wrote: I mean the three button we see in ICS, the back, the home and the recent. On Nov 8, 10:08 pm, Chris Stewart cstewart...@gmail.com wrote: I suspect you mean the menu button.  I believe, and could be very wrong,

[android-developers] Country code picker ?

2011-11-13 Thread Benjamin LE CUN
Hello guys, I'm looking for a country code picker ( you know, the +xx before a phone number ). I don't really wanna collect all the flags one by one and input the country codes one by one as well, so I'm pretty sure someone made a library or something similar but I couldn't find anything on

Re: [android-developers] How to reload app without restarting emulator

2011-11-13 Thread Jim Graham
On Sun, Nov 13, 2011 at 05:21:45PM -0500, Mark Murphy wrote: This usually happens automatically. If you are using Eclipse, sometimes Eclipse doesn't think you changed anything (e.g., perhaps you only touched the manifest), and so it will not re-install the APK. I used to run into this, myself.

Re: [android-developers] MediaMetadataRetriever does this work ?

2011-11-13 Thread New Developer
No matter what value is passed to pict = retrieve.getFrameAtTime(frame); You always have the first frame never anything else ? Why ? On 11/13/2011 04:04 PM, New Developer wrote: Called from a class that implements ImageView @Override protected void onDraw(Canvas canvas) {

[android-developers] Re: Threads in Android (NetworkOnMainThreadException with Javamail) acting very strange

2011-11-13 Thread BCS
move FetchEmails e outside of the curly braces and declare in the scope where you need to use it On Nov 13, 8:20 am, Stelios s.kiay...@gmail.com wrote: I am a beginner in Android platform and i have encountering a serious problem. I want to fetch emails from gmail and therefore i have created

[android-developers] Re: Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread kevin
Well, I can understand a normal user's feeling. However this is not a public feature but for companies to use in corporate phones. On 11月14日, 上午3时31分, Jim Graham spooky1...@gmail.com wrote: On Sun, Nov 13, 2011 at 11:27:48AM -0500, Mark Murphy wrote: On Sun, Nov 13, 2011 at 11:20 AM, kevin

[android-developers] How to analyze memory usage of an app

2011-11-13 Thread xeagle
Hi, I try to debug an application which has an out of memory error. The app cannot allocate 3Mbytes in some condition. I analyze the adb log, there are some debug output of dalvikvm as below: dalvikvm: GC_FOR_MALLOC freed 1K, 47% free 4781K/8967K, external 55469K/57517K, paused 64ms dalvikvm:

[android-developers] fade in

2011-11-13 Thread bob
How do I make my activity fade in when started? -- 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

Re: [android-developers] fade in

2011-11-13 Thread TreKing
On Sun, Nov 13, 2011 at 10:09 PM, bob b...@coolgroups.com wrote: How do I make my activity fade in when started? Try reading the Activity documentation - there is a method that may be what you need based on the description. While you're at it, may I suggest you spend some time with the rest of

[android-developers] Task implentation

2011-11-13 Thread kishore
Hi All, For calendar information i am getting from this URI: Uri.parse(content://com.android.calendar/calendars) In same way i need to get TASK information or TASK list. Can any one tell me any URI is there for TASK. or any other way to implement Please give information about TASK. Regards,

Re: [android-developers] Task implentation

2011-11-13 Thread TreKing
On Sun, Nov 13, 2011 at 10:36 PM, kishore vkishore...@gmail.com wrote: Please give information about TASK. Please give information about what you mean by TASK. - TreKing

Re: [android-developers] fade in

2011-11-13 Thread Kristopher Micinski
http://stackoverflow.com/questions/3389501/activity-transition-in-android On Sun, Nov 13, 2011 at 11:20 PM, TreKing treking...@gmail.com wrote: On Sun, Nov 13, 2011 at 10:09 PM, bob b...@coolgroups.com wrote: How do I make my activity fade in when started? Try reading the Activity

[android-developers] Re: trace_dev_write() in QEMU/ANDROID

2011-11-13 Thread Vikram
bounce! Has noone tried/used this ? Thanks, Vikram On Nov 9, 2:31 pm, Vikram vikrams...@gmail.com wrote: Hi, I am trying to generate trace files out of QEMU and I see that out of the 6 files dumped by QEMU: qtrace.bb, qtrace.exc, qtrace.insn, qtrace.method, qtrace.pid and qtrace.static

Re: [android-developers] Re: Threads in Android (NetworkOnMainThreadException with Javamail) acting very strange

2011-11-13 Thread GMLチェックツール
Why not to use AsyncTask class. For me, it is the best approach for your case. (2011/11/14 9:56), BCS wrote: move FetchEmails e outside of the curly braces and declare in the scope where you need to use it On Nov 13, 8:20 am, Stelioss.kiay...@gmail.com wrote: I am a beginner in Android

[android-developers] Re: Custom made Clikable buttons

2011-11-13 Thread Naeem
No worries Rawat, Look at the link below http://developer.android.com/resources/tutorials/views/hello-formstuff.html It explains how to create custom buttons using any images of your choice. Lots of other good stuff is also available in Android SDK documentation... Do check it out when you got

Re: [android-developers] Re: Custom made Clikable buttons

2011-11-13 Thread Melaka Atalugamage
i was searchinig for this too. thank you :) On 14 November 2011 10:43, Naeem naeem.akram.ma...@gmail.com wrote: No worries Rawat, Look at the link below http://developer.android.com/resources/tutorials/views/hello-formstuff.html It explains how to create custom buttons using any images of

[android-developers] Re: How to analyze memory usage of an app

2011-11-13 Thread srihari babu
Ur right Jason, that was memory allocated natively by linux OS. Heap window statistics in DDMS won't includes native memory allocated by application. Check out this video, this explains very good. http://www.youtube.com/watch?v=_CruQY55HOkfeature=player_embedded Regards, Srihari babu.R -- You

[android-developers] Location - Address Issue

2011-11-13 Thread Siva Prakash
Hi Im trying to get the sublocality from Map API, when I use the following URL http://maps.googleapis.com/maps/api/geocode/json?latlng=13.0445756,80.2447062333sensor=false Im getting { long_name : T Nagar, short_name : T Nagar, types : [

Re: [android-developers] Re: Custom made Clikable buttons

2011-11-13 Thread s.rawat
HI Naeem, William thanks for the link :) , keep looking for this space , will post my code here..!! Rgds, Saurabh ..pain is temporary.quitting lasts forever.. On Mon, Nov 14, 2011 at 10:44 AM, Melaka Atalugamage melak...@gmail.comwrote: i was searchinig for this too. thank you :)

Re: [android-developers] Re: Browser plugin to capture all keyboard input in browser?

2011-11-13 Thread Jim Graham
On Sun, Nov 13, 2011 at 05:50:24PM -0800, kevin wrote: Well, I can understand a normal user's feeling. However this is not a public feature but for companies to use in corporate phones. Corporate spyware is still spyware, and it's just as wrong either way. If a company doesn't trust the people

[android-developers] getting this error The apk must be signed with the same certificates as the previous version.

2011-11-13 Thread lakshman
HI, getting this error The apk must be signed with the same certificates as the previous version. Please follow the steps 1. Made code changes to android app and changed the version from 1 to 2 2. Generated the signed application .apk from eclipse editor. 3. Tried to upload the apk file in the

[android-developers] Getting actual device resolution

2011-11-13 Thread Peter Webb
I have been using a simple 3rd party game engine, from the book Beginning Android Games. The example code uses a fixed resolution (320 x 480) and this is scaled on output. Not surprisingly, the bitmaps and everything else is scaled and looks pretty poor. My code is set up to use the native

Re: [android-developers] Ksoap2

2011-11-13 Thread venugopal reddy
Hello nag, Is it possiable to print soap envelope info using ksoap api On Wed, Jul 13, 2011 at 2:14 PM, nageswara rao rajana nagu.raj...@gmail.com wrote: Hello friend Ksoap is android specific, using this jar files you can web services(Soap) which were developed on java Or .Net. -- You

Re: [android-developers] getting this error The apk must be signed with the same certificates as the previous version.

2011-11-13 Thread GMLチェックツール
You must use same private release key (keystore) for signing. Just follow the instructions on this link. http://developer.android.com/guide/publishing/publishing.html (2011/11/14 15:45), lakshman wrote: HI, getting this error The apk must be signed with the same certificates as the previous

[android-developers] How to find devices which are connected to a network?

2011-11-13 Thread Sunil Mishra
Hi, I want to know the ip address of the devices which are present in the network. Is there any way to do that? Thanks -- 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] Re: getting this error The apk must be signed with the same certificates as the previous version.

2011-11-13 Thread lakshman
HI, we are using the same keystore for the android app update but still getting this error. can some one help us. regards lakshman On Nov 14, 12:07 pm, GMLチェックツール gml.check.t...@gmail.com wrote: You must use same private release key (keystore) for signing. Just follow the instructions on this