Re: [android-beginners] Pre-loading an SQLite database

2010-07-31 Thread peter f miller
On Fri, Jul 30, 2010 at 4:39 PM, Bret Foreman wrote: > I currently have a flat file in my assets directory that I read into > SQLite the first time I need something from the appropriate table. > That works OK, but I'm effectively doubling the space required for > that data and it's a lot of data.

Re: [android-beginners] How to Access voice call stream in real time

2010-07-20 Thread peter f miller
On Mon, Jul 19, 2010 at 10:53 PM, zain mustafa wrote: > I know it is possible to catch the voice stream of a call and edit it > in real time because of the existence of call spoofing applications on > android phones. I need to know how i can access the real time stream > of a voice call that i may

Re: [android-beginners] Re: Installing on SD Card Version 2.2

2010-06-28 Thread peter f miller
On Mon, Jun 28, 2010 at 9:36 AM, Justin wrote: > > Thank you. So it would be good practice to put that in to any/all apps > then? No. Take a look at the documentation (http://developer.android.com/guide/appendix/install-location.html), everything you need to know is in there. Pete -- You recei

Re: [android-beginners] Phone contacts to GoogleMail?

2010-06-09 Thread peter f miller
On Wed, Jun 9, 2010 at 5:57 PM, Sam Lowry wrote: > Hi all > > I'm probably missing something blindingly obvious, but I can't see a way > of doing this. > > What I want to do is copy ALL my phone contacts to my GoogleMail (well > actually GMail) contacts. So if I ever don't have my phone with me, o

Re: [android-beginners] Proper way to finish an activity

2010-03-31 Thread Peter Fortuin
Hi DroidBy, Maybe it's a good idea to read the following: http://developer.android.com/guide/topics/fundamentals.html#actlife Read the part about the Activity lifecycle. That should answer your questions. Kind regards, Peter 2010/3/31 DroidBy > I think someone here can anwer me.. &g

Re: [android-beginners] Problem with the deployment of an application

2010-03-16 Thread Peter Fortuin
Did you try in debugging mode? Don't know if you use Eclipse for development? It should give you some kind of error message. Otherwise adb should say samething when deploying. Did you read the logcat? 2010/3/11 chris2a > Hello, > I have a new problem with my android application... > My applica

Re: [android-beginners] Re: Notification helf

2010-02-02 Thread Peter Smith
> > On Jan 29, 3:49 am, Chirayu Dalwadi wrote: > > I dont know how to use NotifyWithText. I need a code, that will help in > > implementing it > > Y'know, I'd never heard of it before, either...took all of a minute to find the info, though. To replicate my research and get a lot more information,

[android-beginners] Re: Draw Polygon on Maps

2010-01-13 Thread Peter
rawing. > > ---­-- > TreKing - Chicago transit tracking app for Android-powered > deviceshttp://sites.google.com/site/rezmobileapps/treking > > > > On Wed, Jan 13, 2010 at 7:29 AM, Peter wrote: > > Hi, > > > I am ne

[android-beginners] Draw Polygon on Maps

2010-01-13 Thread Peter
Hi, I am new to Android Dev and to this group. I wanted to do some work with the MapView. Mostly some basic stuff like zooming to an address, and the programatically drawing a shape (polygon) based on user input of coordinates. Then i want to overlay that polygon on the google map at the specif

[android-beginners] Android Map API Key

2009-12-15 Thread Linh, Peter
Hi all, I just start android app development few days ago since im quite excited with the google map. But i find problem finding the map api key for using it in my app. As i know, i need to register the MD5 fingerprint from debug.keystore. However, i have no clue of finding this file in my compute

[android-beginners] Re: XML stream corruption

2009-12-10 Thread Peter Lundgren
Hi, I found what's wrong. The Dalvik VM doesn't handle unicode in xml very well. Here's a bug report http://code.google.com/p/android/issues/detail?id=2607 As I understand the last message in the bug tracker, they have assigned it to be fixed to the next version of Android. Regar

[android-beginners] Re: XML stream corruption

2009-12-10 Thread Peter Lundgren
I also tried now, to get a little fewer steps in the process, to pass the stream directly to the xml DOM document builder. This should certainly handle the encoding for me, but unfortunately, I get no change. On 7 Dec, 10:19, Peter Lundgren wrote: > Hi! > I am writing a client on Android

[android-beginners] XML stream corruption

2009-12-07 Thread Peter Lundgren
buffer.append( inputLine ); } messageResponse = new ResponseParser().parseString ( buffer.toString()); } System.out.println( "Response parsed! "); return messageResponse; } I would appreciate some help here

[android-beginners] Detecting a Tidal Wave of Android Apps

2009-10-27 Thread Peter Farago
d and what's to come at: http://gigaom.com/2009/10/26/will-there-be-an-android-app-boom-soon/ Best regards, Peter Farago VP Marketing www.flurry.com Follow us: http://blog.flurry.com http://twitter.com/FlurryMobile --~--~-~--~~~---~--~~ You received this messa

[android-beginners] Sharing Industry Stats: Android Reeling in iPhone?

2009-08-07 Thread Peter Farago
Pulse-July-2009 Topics we cover this month: 1. No End in Sight for New iPhone Apps 2. Google Android: We Have Lift Off 3. You Trying to Swindle my Kindle? Best regards, Peter -- Peter Farago VP Marketing www.flurry.com Follow us: http://blog.flurry.com http://twitter.com/FlurryM

[android-beginners] Re: I have attached example of intent.putExtra and intent.getExtras in android plz check it

2009-07-29 Thread peter
hi, you should modify your test1.java like this: public class test1 extends Activity { private TextView dd; public void onCreate(Bundle x) { super.onCreate(x); setContentView(R.layout.text); String s=getIntent().getStringExtr

[android-beginners] Re: I have attached example of intent.putExtra and intent.getExtras in android plz check it

2009-07-29 Thread peter
hi: you should modify test1.java like this: public class test1 extends Activity { private TextView dd; public void onCreate(Bundle x) { super.onCreate(x); setContentView(R.layout.text); String s=getIntent().getStringExtra("

[android-beginners] Re: getSystemService(Context.SENSOR_SERVICE) hangs emulator

2009-07-29 Thread Peter
I'm experiencing the same difficulties. Have you had any luck with earlier versions of the SDK/emulator? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to

[android-beginners] Flurry Mobile Application Analytics - Industry Pulse, June 2009

2009-07-02 Thread Peter Farago
tics since releasing our beta late last year, and now have over 600 android applications reporting real-time, client-side usage data. Best regards, Peter Farago VP Marketing www.flurry.com Follow us: http://blog.flurry.com http://twitter.com/Fl

[android-beginners] Creating a custom Calendar desktop widget - problems running default calendar projects

2009-05-19 Thread Peter Boughton
any ideas or suggestions on what has gone wrong or what I need to do to get things working? Thanks, Peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group,

[android-beginners] Re: Logging to files on the device?

2009-01-28 Thread Peter Carpenter
;t found a directory/fileBrowserPreference yet... :( Would have thought that should be pretty standard. Cheers, Peter. -Original Message- From: android-beginners@googlegroups.com [mailto:android-beginn...@googlegroups.com] On Behalf Of Mark Murphy Sent: Thursday, 29 January 2009 12:07 AM To: android-beginn

[android-beginners] Logging to files on the device?

2009-01-27 Thread Peter
Greetings! I've been looking at the built in logging classes for Android and am not sure that it's going to do what I'm after. We're developing an application where we want the end user to be able to examine the application log file, and also to be able to send it to us if there are issues. The

[android-beginners] Re: add some images in emulator

2009-01-16 Thread Peter Feng
Thank you !!! I can see the pictures in "Pictures". 2009/1/17, James Yum : > > Hi, > > You first need to emulate an SD card: > > http://code.google.com/android/reference/emulator.html#sdcard > > Afterwards, you can push files using adb push: > > adb push image.png /sdcard/image.png > > Finally, la

[android-beginners] Re: Google Apps for Business - No Android Support?

2008-12-29 Thread Peter Parnes
Hi Google Apps works just fine. Just register with your Apps email address when you first register the device. Unfortunately, Android cannot sync with more than one account though. -Peter On Sat, Dec 27, 2008 at 2:48 PM, coderiver wrote: > > I would like to use my G1 with my business a

[android-beginners] Re: how to order unlocked unit as developer?

2008-12-19 Thread Peter Fisher
Please google next time? http://code.google.com/android/dev-devices.html On Fri, Dec 19, 2008 at 9:49 AM, hitno wrote: > > how to order unlocked unit as developer? > please send link if u know > > tx, > > duke > > > > --~--~-~--~~~---~--~~ You received this mess

[android-beginners] Re: button names - where are they stored?

2008-12-06 Thread Peter
Well I'm not sure what you mean by where are they stored, they are stored in R.layout.main / the main.xml file. And no you can name them what ever you would like in the format android:id="@+id/namegoeshere" On Dec 5, 9:29 am, Josh <[EMAIL PROTECTED]> wrote: > I notice in all of the code examples

[android-beginners] Customized ListView

2008-11-16 Thread Peter Burger
I run the programm I get a ClassCastException at the method call "setListAdapter(daa);" in the ListActivity class. And to be honest, I don't have a clue what I am doing wrong. The res/layout files are created as described in the well-known notepad tutorial but I would pos

[android-beginners] Re: do you think Android going to work this market?

2008-11-11 Thread Peter
How could it ever be to early to start developing? On Nov 11, 3:42 am, Tarcísio <[EMAIL PROTECTED]> wrote: > I think that is too early to development applications in Andoid. > What do you think of? --~--~-~--~~~---~--~~ You received this message because you are sub

[android-beginners] Re: TimerTask help

2008-11-04 Thread Peter Fisher
} >}); >} >}, 3); > > On Nov 2, 5:54 am, Peter <[EMAIL PROTECTED]> wrote: > > Hello everyone, I'm some what new to java and very new to android. I'm > > trying to create a Clock for a MMO I play. I

[android-beginners] Re: Can't load Eclipse plug-in

2008-11-02 Thread Peter
I had the same problem. Try and just "install" the addon anyway from the menu it should allow you. Also use http instead of https. Cheers On Nov 1, 9:15 am, AF6FB <[EMAIL PROTECTED]> wrote: > I'm setting up a new development environment and I can't get the > Eclipse plug-in to load. > > I can ad

[android-beginners] TimerTask help

2008-11-02 Thread Peter
Hello everyone, I'm some what new to java and very new to android. I'm trying to create a Clock for a MMO I play. I was able to get it running with the normal java debugger but seeing I don't have ActionListener I had to use TimerTask which I'm new to. I want my program to simply just display the

[android-beginners] CursorAdapter - Need example

2008-05-19 Thread Peter Kevin Reeves
ave a good example of how to write a CursorAdaptor, I'd appreciate it. Peter --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-begi