[android-developers] Re: Convert GeoPoint to ScreenCoord

2008-11-14 Thread Peter Stevenson
Peter Wrote currentPoint = new GeoPoint((int) (-43.2973 * 100), (int) (172.5929 * 100)); endCurrentPoint = new GeoPoint((int) (-43.2984 * 100), (int) (172.5940 * 100)); this might help Allan Valeriano wrote: Is there a way to convert from GeoPoint to

[android-developers] Re: where's the youtubeviewer's source code?

2008-11-14 Thread [EMAIL PROTECTED]
And FLV is not currently supported. On Nov 12, 6:53 am, Jean-Baptiste Queru [EMAIL PROTECTED] wrote: Google's Youtube application isn't part of the Android platform and hasn't been open-sourced. JBQ On Wed, Nov 12, 2008 at 6:48 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: why cannt i

[android-developers] Re: Compressed Camera Images

2008-11-14 Thread [EMAIL PROTECTED]
I believe there is a bug in the G1 camera driver that causes it to ignore some parameters including picture size. Look for a fix in a future release. On Nov 6, 7:55 am, Alvin Yates [EMAIL PROTECTED] wrote: I'm taking pictures with the Camera using takePicture(null, null, myCallback), but

[android-developers] Re: File permission about MediaPlayer

2008-11-14 Thread [EMAIL PROTECTED]
Due to the Android security model, MediaPlayer does not have root access rights. It can access the sdcard, but it can't access private app directories. Your app can explicitly grant MediaPlayer temporary access to secure files by opening the file and passing the file descriptor to MediaPlayer

[android-developers] Re: CHeck File Permissions

2008-11-14 Thread szeldon
Hi once more, This looks weird. Does this code work on your machine? (change package in file path) This code, for my package, returns true true so those methods work for me. public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Re: A network status info question

2008-11-14 Thread bins
thanks for u r replay, Yes i added this in the manifets... ConnectivityManager cm = (ConnectivityManager)this.getSystemService (BatteryInfo.CONNECTIVITY_SERVICE); NetworkInfo mInfo=cm.getNetworkInfo(NetworkType.MOBILE); this is the code i am using..is there any chance to get

[android-developers] source code for android application mms

2008-11-14 Thread jalandar
Hi Is com.android.mms application's source code available ? If so,In future will it be available? Regards jagtap Email: [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: ADB via USB

2008-11-14 Thread nt94043
On Nov 13, 8:13 pm, Dan Pou [EMAIL PROTECTED] wrote: I just had success by adding root. I added the udev rule, restarted udev, killed existing server, sudo ./adb devices. Ok, I didn't know what you mean by adding root, but this gave me a clue that got things working, sort of: If I kill the

[android-developers] Re: Android FreeTTS server interfacing, a speech solution for your projects

2008-11-14 Thread Nanard
Some TTS interesting links : TTS included into Android before end of year ? http://androidguys.com/?p=2765#comment-4647 Some Open Source TTS solution : http://www.cstr.ed.ac.uk/projects/festival/ How to use it from Java :

[android-developers] Re: Compressed Camera Images

2008-11-14 Thread blindfold
Hi Alvin, In the discussion at http://groups.google.com/group/android-developers/browse_thread/thread/6e070855723aede0/ jrpowers mentioned You can grab a 480x320 picture, but it still takes a while to come back after you call takePicture. Take care though about possible consequences of

[android-developers] Re: start your application on camera button

2008-11-14 Thread blindfold
What happens when more than one application has this in the manifest? Thanks On Nov 14, 8:53 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Register to receive the intent android.intent.action.CAMERA_BUTTON. Here's how you might add it to your app's manifest: receiver

[android-developers] Re: start your application on camera button

2008-11-14 Thread Ludwig
If you have more than one best matching activity for an intent is to offer you a list to pick the desired activity, with the option of using one as the default (ie do not ask again). It is easy to trigger, just by defining two activities with the same intent...Ludwig 2008/11/14 blindfold [EMAIL

[android-developers] Re: Convert GeoPoint to ScreenCoord

2008-11-14 Thread Allan Valeriano
Thanks a lot Peter. It worked well. --Valeriano On Fri, Nov 14, 2008 at 6:00 AM, Peter Stevenson [EMAIL PROTECTED]wrote: Peter Wrote currentPoint = new GeoPoint((int) (-43.2973 * 100), (int) (172.5929 * 100)); endCurrentPoint = new GeoPoint((int) (-43.2984 *

[android-developers] Re: start your application on camera button

2008-11-14 Thread blindfold
Thank you, Ludwig! That answers my question, as I was considering adding the code to my app's manifest as well. Much appreciated. On Nov 14, 11:53 am, Ludwig [EMAIL PROTECTED] wrote: If you have more than one best matching activity for an intent is to offer you a list to pick the desired

[android-developers] Re: JavaMail and Android - Little excursus

2008-11-14 Thread [EMAIL PROTECTED]
Licence was update. Moved to CDDL. This library is not free to use. Please contact me in case in case of commercial uses. On 9 Ott, 13:00, Mos Alexandru [EMAIL PROTECTED] wrote: This .jar package realy works for sending mails. Thank you. --~--~-~--~~~---~--~~ You

[android-developers] Re: Google Market Download Numbers

2008-11-14 Thread Peli
I have seen negative numbers for active downloads for a new app.. something like 60 total, and -120 active making it -200% :-) Clearly these bugs need to be fixed. Peli On Nov 14, 4:58 am, Nick Melnick [EMAIL PROTECTED] wrote: On Nov 13, 7:30 pm, tberthel [EMAIL PROTECTED] wrote:

[android-developers] Re: Google Market Download Numbers

2008-11-14 Thread Al Sutton
Lol... I'm guessing some users really did want to uninstall some of the apps :) :). Al. http://andappstore.com/ Peli wrote: I have seen negative numbers for active downloads for a new app.. something like 60 total, and -120 active making it -200% :-) Clearly these bugs need to be fixed.

[android-developers] Re: open intents sensor

2008-11-14 Thread Peli
It is hard to tell what is going on without error messages. Do you have any logcat output? Do you see some activity on the standalone Java client? (like incoming connection..) Does the connection work when you test the connection settings? Which version of the sensor simulator have you used?

[android-developers] WebView and SSL

2008-11-14 Thread Rahul
I Have one problem in the android .i Am developin one application it contain on one click open a website in a webView.It has run but one problem is that some website are not open in the webView. any types of certificate is required for some website. so an one have another solution to open a

[android-developers] Re: extend MapActivity not Working

2008-11-14 Thread Mark Murphy
joshbeck wrote: I am trying to extend the MapActivity class, but it's stumping me tonight. Notes: The first This post contains: -Working Code -Non-Working Code --I only change the extend MapActivity line and add unimplemented isRouteDisplayed() -- -Error Log

[android-developers] Re: ADB via USB

2008-11-14 Thread David Turner
this is probably a permission problem. I don't have the specifics, but I assume that it should be possible to allow a given user/group to access the device by changing the udev rules (which must be done as root though) On Fri, Nov 14, 2008 at 10:20 AM, nt94043 [EMAIL PROTECTED] wrote: On Nov

[android-developers] Re: Inaccurate comment view in Market?

2008-11-14 Thread friedger
We experience negative numbers in active installations. Weird!! Friedger Openintents.org On 13 Nov., 18:00, Nick Melnick [EMAIL PROTECTED] wrote: I have one application (ElJay) in theMarketthat has gone through a few version upgrades since it was originally posted. I noticed that Google has

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

2008-11-14 Thread roland
Scroll view supports only the vertical scrolling. MapView has horizontal scrolling, i think it is not what you want. I'm looking for the same thing. On Nov 12, 8:57 am, dilu [EMAIL PROTECTED] wrote: Hi i want to puthorizontaland verticalscrollbar both on the same page .I am able to put the

[android-developers] Re: Compressed Camera Images

2008-11-14 Thread Alvin Yates
I read that, but it seems that I would have to use the hidden parameter.set() methods in order to get that functionality, which is not documented by the API and therefore leaves me hesitant to write it in at the moment. The code I am using is based on the Camera.Parameters.setPictureSize (),

[android-developers] Re: Android market and ADCII

2008-11-14 Thread Teo
Regarding your first question, i asked myself the same... I uploaded my app to the Market though, with the assumption that i'll be able to participate. I hope it will be possible :) On Nov 13, 9:39 pm, Juan David Trujillo C. [EMAIL PROTECTED] wrote: Hi guys! I have a question: Is it possible

[android-developers] Re: Compressed Camera Images

2008-11-14 Thread blindfold
Hi Alvin, I will send you a test program to see if setPictureSize(480,320) also fails for me. I don't think you need the parameter.set() method unless you want to do additional things like setting JPEG quality below 100. Regards On Nov 14, 2:41 pm, Alvin Yates [EMAIL PROTECTED] wrote: I read

[android-developers] Re: Android market and ADCII

2008-11-14 Thread Alvin Yates
Only news on the market status/changes that I'm aware of have been posted to the blog for some time now: http://android-developers.blogspot.com/search/label/Android%20Market On Nov 13, 11:39 am, Juan David Trujillo C. [EMAIL PROTECTED] wrote: Hi guys! I have a question: Is it possible to

[android-developers] is it possible to change the color of the stars of a RatingBar?

2008-11-14 Thread li knight
is it possible to change the color of the stars of a RatingBar? I also want to change the style of the borders if it's possible. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Question about Contacts

2008-11-14 Thread [EMAIL PROTECTED]
Hi,all. I try to access Contacts data by using Content Providers,but there seems to be an error. source code: public class iContact extends Activity { private Cursor cur; /** Called when the activity is first created. */ @Override public void onCreate(Bundle

[android-developers] Question about ServerSocket

2008-11-14 Thread riverwide
Hi, I want to new a ServerSocket instance.(java.net.ServerSocket) But I can't. A java.net.BindException was throws.(java.net.BindException: Permission do not allow action on socket) Is it possible to use the ServerSocket class in Android ? I've found the ServerSocket page in API

[android-developers] Camera on SDK 1.0

2008-11-14 Thread Ejane
Why can't I launch camera settings on emulator with SDK 1.0 image ? Does anyone have this problem and how to solve it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Is there a command in the API to turn the keyboard backlight off?

2008-11-14 Thread [EMAIL PROTECTED]
I would like to add my voice to this also... there have been MANY returns to store of the white and brown G1 units due to the fact that in poor lighting the backlight is the same brightness as the keys themselves! So in certain lighting, i.e. subdued all the keys appear silver with no legends

[android-developers] Re: CREATE TABLE android_metadata failed

2008-11-14 Thread [EMAIL PROTECTED]
I am experiencing exactly the same problem... Any idea how to resolve this? Armand On Oct 15, 7:22 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi All,          I am using SDK1.0 version. I am using database for storing business card type information. Every thing was running fairly well.

[android-developers] Re: How to get a G1 whithout a suscription plan?

2008-11-14 Thread noodles
Walmart has it for no contract. I saw it was about $359 or something close to that. On Nov 13, 11:39 am, Juan David Trujillo C. [EMAIL PROTECTED] wrote: Hi guys! I don´t live in the US, but I would like to get a G1.  Is it possible somehow to buy a G1 without a suscription plan, and just pay

[android-developers] Mobile Dev Camp on November 29 and 30 in Amsterdam

2008-11-14 Thread Peter Robinett
Hello all, If any of you will be in or near Amsterdam at the end of the month, I encourage you drop by the Mobile Dev Camp I'm organizing. If our first event at the end of August (iPhone Dev Camp, see www.iphonedevcamp.nl) is any guide, we'll have around 100 people trading tips and developing

[android-developers] processing camera preview before display

2008-11-14 Thread Sean
I'm somewhat new to the Android platform. I've been digging around lots of sample code, and haven't seen anything that does what I want: I'd like to create my own code path for getting the camera data from the PreviewCallback, and then displaying it on my own SurfaceView, since I'd like to do

[android-developers] Android on iPhone

2008-11-14 Thread martin
Would it be possible to run Android software on a normal iPhone 3G??? I guess quite a few people would love to see an iPhone with the possibilites of the Andorid open source community... --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Sending email

2008-11-14 Thread dave
I tried out k9mail on the emulator and I get the same error message when I try to send an email from my application. has anyone gotten this to work? On Nov 4, 12:39 pm, Justin (Google Employee) [EMAIL PROTECTED] wrote: Yes, you should be able to install the Email program's APK on the emulator.

[android-developers] Linking to the Amazon MP3 app

2008-11-14 Thread Al
Hello, has anyone seen a web link which points to the Android version of the Amazon MP3 store? I see that the Shazam app links to the Amazon MP3 store, but I'm looking for an example hyperlink from a web app. thanks, Al --~--~-~--~~~---~--~~ You received this

[android-developers] SimpleCursorAdapter setAdapter not rendering any items

2008-11-14 Thread methodin
Anyone know why the following code would produce no list items even if there are 9 rows in the cursor? private boolean fillAndBind(int id,Cursor c,String[] columns,int[] to) { startManagingCursor(c); ListView lv = (ListView)this.findViewById(id); // Now

[android-developers] Upload files on Androïd

2008-11-14 Thread [EMAIL PROTECTED]
Hi, I need to upload files in the directory /data/data/org.myapp/files/ How can I do it ? Ftp ? Thx --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: File permission about MediaPlayer

2008-11-14 Thread Gery
Hi David, Regarding this mediaplayer access right thing, may you help take a look at my issue? I am writing an application which uses MediaPlayer to play video, but I always encountered this issue: java.io.IOException: Prepare failed.: status=0xFFFC 1. I tried to put the wmv file on sdcard

[android-developers] Re: Sending email

2008-11-14 Thread Justin (Google Employee)
Did you set he MIME type in your Intent? Cheers, Justin Android Team @ Google On Nov 14, 7:03 am, dave [EMAIL PROTECTED] wrote: I tried out k9mail on the emulator and I get the same error message when I try to send an email from my application. has anyone gotten this to work? On Nov 4,

[android-developers] Intercepting outgoing call

2008-11-14 Thread Sajid
Hi, I want to intercept the outgoing call, I have achieved the following things -recieved the event of outgoing call and got the dialed number, now what I want to do, is to dial a new number or by changing the already dialed number? I still could not be able to do the above thing, anybody has

[android-developers] HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Hello, Sorry for my lack of technical terminology when referring to this, but I can't figure out what it's called! I've built a custom view for a horizontal slider as described in the following URL: http://www.helloandroid.com/node/250 This works great, but I'd like to show the user an actual

[android-developers] Re: processing camera preview before display

2008-11-14 Thread Dave Sparks
You cannot alter the preview frames as they are being displayed. Camera preview uses a private shared interface between the camera and SurfaceFlinger to display preview frames. It would be too costly to pass this data across two process boundaries and a Java VM. You might be able to get away

[android-developers] Re: great idea

2008-11-14 Thread Varun
Nope It's actually a software used by the medical fraternity. It offers a lexicon of instant prescriptions and the like... And Apple actually worked directly with the makers of Epocrates to bring it to the IPhone. It's pretty much a mainstay for docs, specially residents etc. On Nov 8, 12:52 pm,

[android-developers] Re: Maximize size for Dialog themed activity?

2008-11-14 Thread Anm
This worked... @Override protected void onMeasure( int widthMeasureSpec, int heightMeasureSpec ) { super.onMeasure( widthMeasureSpec, heightMeasureSpec ); // // Despite any measurements of children, always assume the maximum available area. //

[android-developers] Re: Uninstall packages API

2008-11-14 Thread [EMAIL PROTECTED]
I saw, that there is an android.permission.DELETE_PACKAGES, but it seems, that there is no API (at least at the moment) to delete a package. Is that permission checked anywhere in Android, possibly in a undocumented API to delete a package? On 13 Окт, 19:45, hackbod [EMAIL PROTECTED] wrote:

[android-developers] Re: Interested in LBS AR? Android Developer Needed

2008-11-14 Thread Fred Grott(shareme)
A you might want check with Martin he already had something on this this morning.. I am the one doing a Loopt clone using Brightkite's APOI and already have the famous Fred Wilson interested in seeing a demo :) I will follow up with an email with reusume attached On Nov 13, 7:38 pm,

[android-developers] Re: processing camera preview before display

2008-11-14 Thread blindfold
Yes, one can hide the preview frame and do image processing on the data from the preview callback and only display the results of that. On Android/G1 this is painfully slow, but it is successfully used in my live image processing and sound synthesis app at

[android-developers] Re: Interested in LBS AR? Android Developer Needed

2008-11-14 Thread Fred Grott(shareme)
Not in Denver however.. On Nov 13, 7:38 pm, Brightkite [EMAIL PROTECTED] wrote: Looking for an Android developer to join our mobile development team. Feel at home on Facebook Twitter? Like tackling tough groundbreaking problems? Interested in location based services augmented reality? We’d

[android-developers] Re: RC30: any way to access database on device?

2008-11-14 Thread Mark Murphy
Jay-andro wrote: I (inadvertently) upgraded to RC30. I need to check my app's sqlite database on the device. Is there any way to do it. Perhaps over USB or using DDMS? On the emulator, you can download the database file (DDMS or adb pull), then use a local SQLite client (console, Firefox

[android-developers] Re: HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Could be attribute 'scrollbarAlwaysDrawHorizontalTrack' Will give it a shot tonight. On Nov 14, 9:31 am, g1bb [EMAIL PROTECTED] wrote: Hello, Sorry for my lack of technical terminology when referring to this, but I can't figure out what it's called! I've built a custom view for a

[android-developers] Re: Camera on SDK 1.0

2008-11-14 Thread [EMAIL PROTECTED]
I don't think this is supported on 1.0, it's been removed since .9 , use Camera.Parameters to change any camera settings. Should be better camera support on 1.1 when it comes out. Mark On Nov 13, 10:31 pm, Ejane [EMAIL PROTECTED] wrote: Why can't I

[android-developers] How to Redir UDP Packets at init

2008-11-14 Thread Breno
Hello, i'm trying to receive UDP packets, and to do that, i need to redir using 1) telnet localhost 5554 2) redir add udp:5000:5000 This works fine. But, every time i close the simulator, i need to do it again. Please, must be a way to automate that. Does anybody

[android-developers] Re: Upload files on Androïd

2008-11-14 Thread Breno
Hey Nicolas, you can use adb push adb push helloNote.txt /data/data/org.myapp/files check permission first. If you can't, do a 1) adb shell 2) chmod 777 /data/data/org.myapp/files regards Breno On Nov 14, 12:17 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I need to upload files in

[android-developers] Re: Problem with Service Permission

2008-11-14 Thread Cheryl Sedota
We solved the issue by getting the application context and calling startService/bindService on that context rather than the activity's context (which is within an activity group - which is why it didn't work for some reason). On Nov 13, 3:46 pm, Raktim Das [EMAIL PROTECTED] wrote: Hi, I am

[android-developers] Re: Question about ServerSocket

2008-11-14 Thread Alvin Yates
If it's on the page, more than likely. However, if you haven't set your manifest file to add the NETWORK permission, that would do it easily. On Nov 13, 10:40 pm, riverwide [EMAIL PROTECTED] wrote: Hi, I want to new a ServerSocket instance.(java.net.ServerSocket) But I can't. A

[android-developers] Re: How to Redir UDP Packets at init

2008-11-14 Thread Alvin Yates
You could leave it open. Alternatively, you could just write your own shell script/batch file. Might be a way to sneak it in to Eclipse, but I couldn't give you an answer to that right this moment. On Nov 14, 10:14 am, Breno [EMAIL PROTECTED] wrote:      Hello,         i'm trying to receive

[android-developers] shared preferences between applications

2008-11-14 Thread Jason Proctor
i'm using java.util.prefs.Preferences to maintain my apps' preferences, but it seems like one app can't read another's preferences, even if the path to them is the same. is this intended? should i be using a different root than userRoot() ? tx

[android-developers] Re: How to Redir UDP Packets at init

2008-11-14 Thread Diego Torres Milano
you may find this post useful http://dtmilano.blogspot.com/2008/03/automating-port-redirection-in-android.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread g1bb
Bleh... never mind. Just found out about the SeekBar widget: http://code.google.com/android/reference/android/widget/SeekBar.html On Nov 14, 10:46 am, g1bb [EMAIL PROTECTED] wrote: Could be attribute 'scrollbarAlwaysDrawHorizontalTrack' Will give it a shot tonight. On Nov 14, 9:31 am, g1bb

[android-developers] Re: MediaRecorder on G1

2008-11-14 Thread ste
I can record now, but I'm getting errors when I try to stop. I get the following error: RuntimeException: reset failed I also can't play the audio files, so I'm guessing that the reset issue might be causing the files to be corrupted. On Nov 13, 7:17 pm, g1ster [EMAIL PROTECTED] wrote:

[android-developers] Re: How to Redir UDP Packets at init

2008-11-14 Thread Breno
DIego, actually a just find your post. It's very interesting, but you said You can also create ~/.android/redir.conf file and add the redirections you want, one per line where can i create this file? thanks a lot guys Breno On Nov 14, 4:51 pm, Diego Torres Milano [EMAIL PROTECTED] wrote:

[android-developers] Re: Android on iPhone

2008-11-14 Thread Morisato13
From my understanding, it's very VERY doubtful. Android requires the use of 2 processors in order to multitask the way it does. Apple's iPhone just doesnt meet the hardware specifications that are required for the Android platform. With that said however, some hacker MIGHT be able to fudge around

[android-developers] Android on iPhone

2008-11-14 Thread Jason Proctor
It's like putting OSX on a PC... possible if some hacker really wanted to try, but you run in to all kinds of issues. this has been done many times. the only real issue is the piece of code that tries to detect real apple hardware. defeat that, and there are only normal hardware compatibility

[android-developers] Re: Unable to record using MediaRecorder

2008-11-14 Thread ste
I'm doing this on both the emulator and a G1. I create the mediarecorder object as a public variable in my main class: public MediaRecorder recorder = new MediaRecorder(); After looking around, I think my problem was the filename I gave. When I changed it to /sdcard/test.3gpp, I was

[android-developers] Re: disable home button

2008-11-14 Thread zl25drexel
you guys did not open-source everything. it's pretty hard to figure out how things work using a cripple code base. On Nov 13, 2:14 pm, hackbod [EMAIL PROTECTED] wrote: On Nov 12, 6:38 am, zl25drexel [EMAIL PROTECTED] wrote: please, put that API to replace the lock screen, i will be more than

[android-developers] Re: start your application on camera button

2008-11-14 Thread [EMAIL PROTECTED]
Thanks Guys. I added a receiver with CAMERA_BUTTON intent-filter and it then triggers my Main application. But I am not getting the choose application dialog. Instead, both my Main application and camera application opens. activity android:name=MainApp

[android-developers] Re: Attaching the Eclipse debugger to actual device

2008-11-14 Thread Ian
Hey, On Oct 23, 9:23 pm, Wanted unique nickname [EMAIL PROTECTED] wrote: Wow, that totally worked.  For those who are interested, here is my complete Suse example: For those still struggling with OpenSUSE 11, here's mine: Like Nick's, this goes in /etc/udev/rules.d/11-android.rules and

[android-developers] Re: How to Redir UDP Packets at init

2008-11-14 Thread David Turner
You should be able to use QEMU -redir options when starting the emulator, as in: emulator normal-options -qemu -redir tcp:8000::8010 to redirect tcp port 8000 on localhost to 8010 on the emulated system. You can also use several successive options. The only problem is that the parsing/handling

[android-developers] Re: disable home button

2008-11-14 Thread zl25drexel
(i hope i dont sound too obnoxious) the platform is linux based, google had no choices but open sourced it. :-) To me, the apps are the interesting bits but they are not fully opened. For example, they referenced codes/packages that were close- sourced or missing (i.e. speech recognition ).

[android-developers] Re: disable home button

2008-11-14 Thread Jean-Baptiste Queru
-Actually, the linux license only applies to linux itself, and doesn't require anything in user-space to get open-sourced. -See http://android.git.kernel.org/?p=platform/external/srec.git;a=summary Like Romain said, the entire Android platform was open-sourced. If something that ships on the G1

[android-developers] Add your application to Android Market for FREE!

2008-11-14 Thread Android Freeware
Hello fellow Android developers! To motivate developers to spread their applications for the Android mobile platform, we decided to offer FREE INCLUSION of their applications into Android Market! Normally, to participate in the Android Market program, every developer should sign up and pay a

[android-developers] Re: disable home button

2008-11-14 Thread Mark Murphy
zl25drexel wrote: To me, the apps are the interesting bits but they are not fully opened. For example, they referenced codes/packages that were close- sourced or missing (i.e. speech recognition ). Also, as you said, some apps are completely missing. I understand there could be many

[android-developers] Dalvik and BOOTCLASSPATH

2008-11-14 Thread Koush
From adb shell on the emulator, I am prepend the BOOTCLASSPATH to include a jar that contains an implementation of android.widget.EditText. Then from ADB, I launch an activity using the am tool. However, am is failing to launch at all with the following errors in logcat. Any ideas on how to

[android-developers] Re: Android on iPhone

2008-11-14 Thread brs
On Nov 14, 2:44 pm, Jason Proctor [EMAIL PROTECTED] wrote: It's like putting OSX on a PC... possible if some hacker really wanted to try, but you run in to all kinds of issues. this has been done many times. the only real issue is the piece of code that tries to detect real apple hardware.

[android-developers] How to Handle Delays/Waits

2008-11-14 Thread Mark Hansen
I'm trying to figure out the best way to do this, and hoping someone can help... I've created a AnimationDrawable using XML and have no problem setting that to an ImageView to display. The question is, what's the proper way to hold the animation for a specific amount of time, say so that the

[android-developers] Re: Question about ServerSocket

2008-11-14 Thread linker lv
just need give the permission. android.permission.INTERNET 2008/11/14 riverwide [EMAIL PROTECTED] Hi, I want to new a ServerSocket instance.(java.net.ServerSocket) But I can't. A java.net.BindException was throws.(java.net.BindException: Permission do not allow action on socket) Is it

[android-developers] Re: great idea

2008-11-14 Thread brs
It is up to the vendor of this software to decide which platforms they want to support, e.g. based on their development cost and the expected number of sales or some other business strategy For now at least Android is a very tiny platform compared to the ones they already support and they might

[android-developers] Re: File Browser

2008-11-14 Thread Sunit Katkar
Can you share your code? On Thu, Nov 13, 2008 at 9:40 PM, Chihau Chau [EMAIL PROTECTED] wrote: I have programmed a File Browser for android and this display the root directory content then it's que next /sqlite_stms_journals /cache /sdcard /etc /system /sys /sbin /proc /init.rc

[android-developers] Re: PhoneStateListener not being called back

2008-11-14 Thread dreamerBoy
Answered my own question... telMgr.listen(myPhoneStateListener, TelephonyManager.CALL_STATE_IDLE | TelephonyManager.CALL_STATE_RINGING | TelephonyManager.CALL_STATE_OFFHOOK); is wrong. This is right: telMgr.list(myPhoneStateListener,

[android-developers] OpenGL Hardware Acceleration in G1

2008-11-14 Thread razialx
I have not been able to find anything definitive on this yet, despite searching. Does the G1 support hardware acceleration for OpenGL? Thank you, Tim --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Starting Android Service at boot time

2008-11-14 Thread fcdarnold
I am writing an application that has a service that runs a background thread and polls web services. The service creates notifications using the NotificationManager. The service needs to be running when the phone is first booted and the user does not need to start an activity to start the

[android-developers] is there a way to disable the GSM(phone) part of the phone only?

2008-11-14 Thread haitiankid4lyf
I am trying to disable the GSM on my phone while still being able to use wifi and/or bluetooth. Airplane mode does not work for me because it disable all connections. does anybody have any ideas?? Thank You Haitiankid4lyf --~--~-~--~~~---~--~~ You received this

[android-developers] Re: HoriztonalSlider - Indicator type thingy-ma-bob?

2008-11-14 Thread kolby
Doesn't the SeekBar implement what you want already? Including the thingy-ma-bob, aka the draggable thumb? Michael On Nov 14, 12:46 pm, g1bb [EMAIL PROTECTED] wrote: Could be attribute 'scrollbarAlwaysDrawHorizontalTrack' Will give it a shot tonight. On Nov 14, 9:31 am, g1bb [EMAIL

[android-developers] WifiManager

2008-11-14 Thread Benry
I'm testing WifiManager on a G1 phone, and I have a couple questions. I don't think I'm thinking about this thing correctly yet. Anyway, I have an Activity class which is derived from ListActivity, because I want to list all of the SSID's and their signal strengths. This class has a member which

[android-developers] ListActivity and progressbars?

2008-11-14 Thread aadamson
I've about pulled out my hair over this one. Not that it's a huge deal, but I would like to know why this doesn't work? I have a main class that extends listactivity. In it's oncreate method, I issue the appropriate Window.Progress usage function call. In the locations in the code where I

[android-developers] Re: ADB via USB

2008-11-14 Thread willfe
On Nov 14, 4:20 am, nt94043 [EMAIL PROTECTED] wrote: On Nov 13, 8:13 pm, Dan Pou [EMAIL PROTECTED] wrote: I just had success by adding root. I added the udev rule, restarted udev, killed existing server, sudo ./adb devices. Ok, I didn't know what you mean by adding root, but this gave

[android-developers] Extending call logs?

2008-11-14 Thread AndroidAppDev
Is there a way to customize the call logs page? Things such as adding other application's capabilities into the menu, and adding/modifying icons? Thanks, J --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] WifiManager issues

2008-11-14 Thread Benry
Hello, I'm having an issue with WifiManager on the G1. I think the issue has more to do with Intents, BroadcastReceivers, Activities, and other things I'm unfamiliar with the language of. 1. I have a ListActivity derived class which is what loads on startup of the app. 2. A class member is a

[android-developers] Re: OpenGL Hardware Acceleration in G1

2008-11-14 Thread Romain Guy
Yes. :) On Fri, Nov 14, 2008 at 10:39 AM, razialx [EMAIL PROTECTED] wrote: I have not been able to find anything definitive on this yet, despite searching. Does the G1 support hardware acceleration for OpenGL? Thank you, Tim -- Romain Guy www.curious-creature.org

[android-developers] Re: Intercept incoming call

2008-11-14 Thread Mark Murphy
kstamm wrote: Android was promised to be open entirely It is. and I assumed it was going to allow creative use of the device Android is not a device. Android is an operating system. The T-Mobile G1 is a device. Perhaps in 2.0 we will actually have an open telephone platform You have an

[android-developers] Re: Dalvik and BOOTCLASSPATH

2008-11-14 Thread shyamal
I don't know about the BOOTCLASSPATH, but did actually run the jar through dx --dex etc? On Nov 14, 1:37 pm, Koush [EMAIL PROTECTED] wrote: From adb shell on the emulator, I am prepend the BOOTCLASSPATH to include a jar that contains an implementation of android.widget.EditText. Then from

[android-developers] Re: How to debug G1 on Vista 64

2008-11-14 Thread Robert Green
Anyone?? On Oct 29, 10:24 pm, Robert Green [EMAIL PROTECTED] wrote: I'm running Vista 64 and not looking to start a holy OS war here. It's what I run and I can't change it, so just run XP 32-bit is not a good answer. The Windows USB driver is listed as only 32 bit and doesn't work for my

[android-developers] Re: how to inject a KeyEvent

2008-11-14 Thread hackbod
On Nov 13, 4:42 pm, dreamerBoy [EMAIL PROTECTED] wrote: What gave me hope is that there was an injectKeyEvent method on WindowManager in the last API release.   See:http://www.anddev.org/throwing-simulating_keystrokes_programatically-... That was never in the SDK; that is a private API that

[android-developers] Re: disable home button

2008-11-14 Thread hackbod
On Nov 14, 12:08 pm, zl25drexel [EMAIL PROTECTED] wrote: you guys did not open-source everything. it's pretty hard to figure out how things work using a cripple code base. What exactly is missing that would help you? --~--~-~--~~~---~--~~ You received this

[android-developers] Re: G1- No animated transitions between activies

2008-11-14 Thread hackbod
On Nov 13, 2:21 pm, ksmith44 [EMAIL PROTECTED] wrote: Regardless, is there a way to programmatically turn the transitions on in my code so that it will work on the G1? For a specific application, no. --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: How to debug G1 on Vista 64

2008-11-14 Thread Mark Murphy
Robert Green wrote: Anyone?? I am not aware of a 64-bit Vista driver for the G1, though I'm not a Vista user and so haven't exactly kept an eye out for one. is there any workaround I can do short of running VMWare or dual booting? You could boot a live Linux CD. You could switch your

  1   2   >