[android-developers] Re: G1 detected as 'offline' by Eclipse plugin

2008-12-02 Thread GiladH
Hi, Setting stay awake makes no differentce. So does rebooting desktop device... I am using the driver supplied by Google. GiladH On Dec 1, 10:58 pm, joshv [EMAIL PROTECTED] wrote: Make sure stay awake in the Application | Development menu settings is enabled - if I don't have that

[android-developers] Re: Whether is android compatible with GWT?

2008-12-02 Thread nanbo jia
Hi all, it's bug of GWT 1.5.2, develop web application for Android using GWT, 1.5.3 or above is ok. On Mon, Dec 1, 2008 at 5:10 PM, nanbo jia [EMAIL PROTECTED] wrote: On Mon, Dec 1, 2008 at 3:32 PM, [EMAIL PROTECTED] [EMAIL PROTECTED]wrote: I write a simple web application using GWT, it

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Koush
And as I said, decodeByteArray is for compressed images, such as PNG and JPG. It does not work with uncompressed byte buffers that are in R8G8B8A8 or R5G6B5 formats. What is needed are the lockPixels and unlockPixels methods on a mutable Bitmap. On Dec 2, 1:15 am, Christine [EMAIL PROTECTED]

[android-developers] insert the data in the Sqlite Database

2008-12-02 Thread Rahul
i want to insert data in the database of Android Application i create this code String Iname=EtName.getText().toString(); String Imob=EtMob.getText().toString(); String Icity=EtCity.getText().toString(); String strsql=INSERT TABLE

[android-developers] Re: Download the Android Developers

2008-12-02 Thread David Given
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Xavier Mathews wrote: Is There A Reason Why You Post This? It's spam --- just ignore it and it'll be eaten by your spam filter. (Good advice, BTW, for all mailing list spam. Many's the time I've only received a piece of spam because someone

[android-developers] Re: insert the data in the Sqlite Database

2008-12-02 Thread crontabpy
On Dec 2, 8:11 am, Rahul [EMAIL PROTECTED] wrote: i want to insert data in the database of Android Application i create this code         String Iname=EtName.getText().toString();         String Imob=EtMob.getText().toString();         String Icity=EtCity.getText().toString();            

[android-developers] Re: audio recording issues

2008-12-02 Thread Dorn Hetzel
Melody, Unfortunately, this does seem to be the situation until at least the next release of the SDK. I am trying to find a way around it through other interfaces in the native code, but I get the impression that even if I find one, it won't actually be useable in combination with SDK code.

[android-developers] Problem with Serversocket

2008-12-02 Thread sal
But now i am encountering a new problem as follows i have created Serversocket as follows ServerSocket clientListenerSocket = new ServerSocket(); But i dont see port# being in listening state when i do netstat -a on windows XP machine.Strange part is that its not generating any

[android-developers] Re: 2D over 3D

2008-12-02 Thread fcalzada
Hi, I'm having the same issue, I tried hard but without success. Did you find a workaround ? thanks On Nov 20, 1:57 pm, petunio [EMAIL PROTECTED] wrote: Hi I am porting an application based on the sdk 3.0, and I am having countless problems... now, I am struggling trying to put 2D

[android-developers] Re: 2d Canvas over Opengl (Flickering !!)

2008-12-02 Thread fcalzada
Hi petunio, you said I managed (after a lot of problems) to put 2D graphics on top of 3D. I'm trying hard to do the same, and i don't find a solution. how did you do ? thanks a lot On Nov 27, 3:09 pm, petunio [EMAIL PROTECTED] wrote: Hi all does anybody know what am I doing wrong? I

[android-developers] Is it possible to use c/c++ shared object using android application

2008-12-02 Thread Chandrakar Aravind-rqj386
Hi, I am quite new to android, I have one query is it possible to use C/C++ shared object using android application. Thanks in Advance Arvind --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: unknown socket error -1

2008-12-02 Thread martin d.
Hi * sal wrote/ schrieb: But i dont see port# being in listening state when i do netstat -a on windows XP machine.Strange part is its not generating any exception. because of this client is unable to connect to this port I guess you only open a port inside the emulator and not on the

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Koush
Also, the Bitmap class internally (in the C++ JNI atleast) supports the all familiar lockPixels and unlockPixels methods, which allows direct access to the byte buffer. I would suggest extending the Java API to include those methods. On Dec 2, 1:00 am, Koush [EMAIL PROTECTED] wrote: Dianne

[android-developers] Re: 2D over 3D

2008-12-02 Thread Robert Green
In desktop 3D stuff I've always just created billboards and drawn to the textures for them. I'm sure this same technique would work. On Dec 2, 4:29 am, fcalzada [EMAIL PROTECTED] wrote: Hi, I'm having the same issue, I tried hard but without success. Did you find a workaround ? thanks

[android-developers] Re: searchs in Android

2008-12-02 Thread android_soft
You can use the article at this link to understand GeoCode class: http://www.anddev.org/simple_googlemaps_with_threads-t2943.html As for search, the above article has its own search mechanism implemented, but you can look up the API of SearchManager to understand how to directly use the SearchUI

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Koush
{ SkImageDecoder_GIF_Factory, SkImageDecoder::kGIF_Format }, { SkImageDecoder_PNG_Factory, SkImageDecoder::kPNG_Format }, { SkImageDecoder_ICO_Factory, SkImageDecoder::kICO_Format }, { SkImageDecoder_WBMP_Factory, SkImageDecoder::kWBMP_Format }, {

[android-developers] Re: How to integrate c code with java code

2008-12-02 Thread Eric Chan
To Amit : To interaction between C and Java maybe a little complicate, you can do it follows this: *Because each class loader maintains a set of native libraries, the programmer may use a single library to store all the native methods needed by any number of classes as long as those classes have

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Christine
As John says, why don't you use BitmapFactory.decodeByteArray? On Dec 2, 10:03 am, Koush [EMAIL PROTECTED] wrote: Also, the Bitmap class internally (in the C++ JNI atleast) supports the all familiar lockPixels and unlockPixels methods, which allows direct access to the byte buffer. I would

[android-developers] Re: How to get MediaController positioned at a required location?

2008-12-02 Thread David Given
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nilangini wrote: [...] Do you have any idea how can we position the MediaController at a required location? I could not find any way to set the position of MediaController. Heh --- I just asked this! One it's *playing*, you can use

[android-developers] Re: How to integrate c code with java code

2008-12-02 Thread Amit
Android supports JNI at application framework level. For example, in platform/frameworks/base.git, Mediaplayer.java at: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=media/java/android/media/MediaPlayer.java;h=b6064e1bb6b0f40f72fc1535b264f5c3fa190548;hb=HEAD file has got

[android-developers] Distribution of updates.

2008-12-02 Thread Don Pellegrino
I have not yet noticed any updates to the built-in applications or to the applications I have installed from the Market. It could be that none have been deployed but I don't seem to have a way to confirm this. I was unable to find documentation on the general update distribution process. The

[android-developers] Re: (Service == Process)?

2008-12-02 Thread patrick
Hi guys, thanks very much for your answers. Your answers and the link that I obviously missed helped me clear out these things. Patrick On Dec 1, 8:03 pm, Dianne Hackborn [EMAIL PROTECTED] wrote: On Mon, Dec 1, 2008 at 5:41 AM, patrick [EMAIL PROTECTED] wrote:  - therefore an activity is a

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Koush
Dianne Hackborn: I am asking this in the context of how to create a screenshot application. Taking screenshots is not possible on the G1 anyways, because reading from /dev/graphics/fb0 is only available to root and shell and not available to actual applications. Thus is only works on hacked

[android-developers] Re: socket exception error

2008-12-02 Thread sal
Hi, Thanks for your concern, The problem with socketException got solved by putting INTERNET permission in manifest.xml file. But now i am encountering a new problem as follows i have created Serversocket as follows ServerSocket clientListenerSocket = new ServerSocket(); But i dont see

[android-developers] Re: unknown socket error -1

2008-12-02 Thread sal
Hi, Thanks for your concern, The problem with socketException got solved by putting INTERNET permission in manifest.xml file. But now i am encountering a new problem as follows i have created Serversocket as follows ServerSocket clientListenerSocket = new ServerSocket(); But i dont see

[android-developers] Re: Is it possible to use c/c++ shared object using android application

2008-12-02 Thread Ludwig
No, native code is not supported ATM.This question has been asked a quite a few times in recent days and I would not expect the answer to change any time soon. Ludwig 2008/12/2 Chandrakar Aravind-rqj386 [EMAIL PROTECTED] Hi, I am quite new to android, I have one query is it possible to

[android-developers] Re: ice-e on Android?

2008-12-02 Thread supernova
I,ve read the following -Ice-E for Java currently supports Java Micro Edition (ME) CLDC 1.1 with MIDP 2.0, Java ME CDC 1.0 with PP 1.0 as well as Java Standard Edition (SE) version 2, 5 and 6. Also Ice-E can run on Android because it supports a relatively large subset of the Java Standard

[android-developers] Re: 2D over 3D

2008-12-02 Thread fcalzada
Yes i thought about it, but it's gonna take some 3d resources... and my application is already quite heavy in vertices number On Dec 2, 3:51 pm, Robert Green [EMAIL PROTECTED] wrote: In desktop 3D stuff I've always just created billboards and drawn to the textures for them.  I'm sure this

[android-developers] Re: RatingBar ratingBarStyleSmall

2008-12-02 Thread Michael
On Dec 1, 2:49 pm, Xavier Mathews [EMAIL PROTECTED] wrote: Right but are there add-on rate bars? What the heck are you talking about? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Michael
Who's Code Would That Be? And what about the difference between http and htp is there a code for each one? See, now I'm starting to think you're a troll. What is 'htp'? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Android Camera Preview Filter Using Camera.PreviewCallback.onPreviewFrame

2008-12-02 Thread dmanpearl
I decoded the RGB color data from the Android Camera PreviewCallback onPreviewFrame() frame. My function that decodes the YUV byte[] buffer from the preview callback and converts it into an ARGB_ int[] buffer is presented below. The luminance buffer takes up the first width * height bytes of

[android-developers] Re: G1 detected as 'offline' by Eclipse plugin

2008-12-02 Thread GiladH
Problem resolved. Probably due to improper USB driver installation. On Dec 1, 10:34 pm, GiladH [EMAIL PROTECTED] wrote: Guys, I can debug my app just fine with the emulator. However, when I connect my G1 device to desktop via USB and attempt to run/debug my app on it (after following

[android-developers] Re: Netflix Instant

2008-12-02 Thread Michael
This is an Android development forum, I think you can assume people are talking about Android applications. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Trouble inflating a view

2008-12-02 Thread Romain Guy
Hi, The line: View.inflate(FileBrowser.this, R.layout.icon, null); Should be: LayoutInflate.from(FileBrowser.this).inflate(R.layout.icon, parent, false); You have to pass the parent so that the generated layout parameters are of the right type. In the case of a GridView, it is also important

[android-developers] Re: ice-e on Android?

2008-12-02 Thread Michael
By default, that J2SE application would not run at all on Android, since it doesn't support native Java classes - all Android apps are run in a Dalvik virtual machine, so must be converted to DEX format. Not to mention that Android has its own GUI interface, which is not the standard stuff used

[android-developers] android.graphics, drawing paths, and patterns

2008-12-02 Thread Bradley Kite
Hi fellow developers, I have a requirement to draw a path on a canvas (which is easy enough), but to then stamp symbols over it every few pixels. In particular, the symbols I want to stamp over it are .png images, and basically change the line so that it contains 'x' shapes on it - as an

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews
What Are You Talking About? If You Don't Know What Htp is Then Why Are You Even In This Group! ANYWAYS On 12/02/2008, Michael [EMAIL PROTECTED] wrote: Who's Code Would That Be? And what about the difference between http and htp is there a code for each one? See, now I'm

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Michael
Why don't you enlighten us? --~--~-~--~~~---~--~~ 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

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Mike Reed
The only ways to specify the pixels directly are via: - consing up a BMP in memory - using setPixels(...) api (which takes 32bit ARGB ints) I apologize there there is no direct API that takes 565 values as input. On Dec 2, 2008, at 4:41 AM, Koush wrote: { SkImageDecoder_GIF_Factory,

[android-developers] Re: android.graphics, drawing paths, and patterns

2008-12-02 Thread Mike Reed
Since you want to draw a bitmap, rather than a path/shape, along the path, I think you'll have to walk the path using PathMeasure manually. Something like this might be the right skeleton. void drawBitmapAlongPath(Path p, Bitmap b) { Matrix m = new Matrix(); PathMeasure meas = new

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Michael
Heh. Clearly a troll. --~--~-~--~~~---~--~~ 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] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews
Thats Nice. On 12/02/2008, Michael [EMAIL PROTECTED] wrote: Heh. Clearly a troll. -- Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL PROTECTED] Fear of a name, only

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews
YOU NEED TO GO FIND YOU SOME BUSINESS. On 12/02/2008, Xavier Mathews [EMAIL PROTECTED] wrote: Thats Nice. On 12/02/2008, Michael [EMAIL PROTECTED] wrote: Heh. Clearly a troll. -- Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech

[android-developers] Re: insert the data in the Sqlite Database

2008-12-02 Thread NuuNeoI
You may forget Double Quote String strsql=INSERT TABLE DataTable(Name,Mobile,City) VALUES (\+ Iname +\,\+ Imob +\,\+ Icity +\); On Dec 2, 6:11 pm, Rahul [EMAIL PROTECTED] wrote: i want to insert data in the database of Android Application i create this code         String

[android-developers] Re: ice-e on Android?

2008-12-02 Thread Xavier Mathews
But Keep In Mind There Are Diffrent Java's One Of Them May Work i.e If Compatiable It Is Need To Match The API i.e And What Ever Format But Android Has It Own Interface So When It Come Down To It You Can Try But It May Not Work! On 12/02/2008, Michael [EMAIL PROTECTED] wrote: By default,

[android-developers] Re: Wifi Ip Address

2008-12-02 Thread Ralf
On the device, go to the wifi settings and select the connected wifi network. It will show you its IP address. If you mean programmatically, sorry, I do not know. R/ On Mon, Dec 1, 2008 at 2:49 AM, Andrea [EMAIL PROTECTED] wrote: How can I get the Ip address assigned by a WiFi network to

[android-developers] email attatchments

2008-12-02 Thread bryan
How do I open email attatchments it never let's 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

[android-developers] getListView().setTextFilterEnabled(true) get the filter text problem

2008-12-02 Thread [EMAIL PROTECTED]
I use getListView().setTextFilterEnabled(true) to fillter the resutl list, now I want to get the filter text , how do it? and how to set default filter text when call this intent? seem is internal object. can you help me? thanks --~--~-~--~~~---~--~~ You

[android-developers] Music file format supported by Android

2008-12-02 Thread Jatin
Hello, Can u please let me know the list of the Music file format supported by Android and the Music Player supported by Android. Thanks, Jatin --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Adding frames into an Image

2008-12-02 Thread sukumar
hi All, I need to add frames (like smiling face, decarator broaders) into an Image. My usecase is - select any picture from phones, and add the preloaded frames to the picture and store the resultant Image.Can anyone please point me to some references or suggest me some ways to acheive this.

[android-developers] how can i detect my g-phone on the PC via USB?

2008-12-02 Thread [EMAIL PROTECTED]
Hello everybody... ...thanks for the great job you are doing lately I have a question that is driving me crazy. .how can i detect my g-phone on the PC via USB?... By the way, i have Windows Vista.and i saw some answers on other forums answering like i had XPbut i don't.

[android-developers] Re: Exchange Server Support

2008-12-02 Thread [EMAIL PROTECTED]
I absolutely love Open Source for the collaborative efforts available. I've been working on Exchange support for the default mail client since it hit Open Source, but hadn't heard much in the way of others working on it. Since k9 is a community driven variant, I've been including my work there

[android-developers] Fast Scroll drag handle similar to Contacts ListView

2008-12-02 Thread Will Ryan
I have a ListView which contains over a thousand entries (sorted from A to Z) and want to know how to scroll this quickly similar to how the Contacts list can be scrolled quickly (by dragging the handle that appears on the right hand side of the screen). How can this be achieved? Is it an option

[android-developers] com.google.wireless.gdata

2008-12-02 Thread AndroidEngineer
Howcome com.google.wireless.gdata and com.google.android.gdata have been removed from the 1.0 r1 library. I see these packages in 0.9 and previous versions but not in 1.0. What is the reason behind removing the libraries? From what I've seen, they seem to be very useful libraries. Please give me

[android-developers] How to get android fs from sdk1.0

2008-12-02 Thread Jerry Zhang
Hello, I am trying to port android1.0 to my omap2430 board. I have ported the android m5-rc14 file system, and it works well. But when I tried to extract the file system from 1.0 as I did from m5-rc14. the android's shell reports Read-only file system. Any suggestion to solve it? Thanks

[android-developers] Retrieve phone number for given contact

2008-12-02 Thread glenys
Hi, I am trying to retrieve the phone number for a given contact. However, the managedQuery function call always terminates my application. No matter what I change my query to, the managedQuery seems to crash all the time. What could be the problem? Could it be that the contacts db file is in a

[android-developers] Bluetooth DUN profile

2008-12-02 Thread Arimus
Hi, I know that the Bluetooth DUN profile was removed prior to the initial release of Android, does anyone have any information as to whether the profile (in particular for the T-Mob G1) will be reinstated at some point in the not too far future? Richard.

[android-developers] Re: correct usage of adb shell input

2008-12-02 Thread Madhusudhan K
Hi You can use key codes directly like adb shell input keyevent 7# for key '0' adb shell input keyevent 8# for key '1' adb shell input keyevent 29# for key 'A' adb shell input keyevent 54# for key 'B' we can also send string as a text, like adb shell

[android-developers] flash player

2008-12-02 Thread bryan
How do I get a flash player on this phone it never let's me download one --~--~-~--~~~---~--~~ 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] UTS program specifications on embedded linux?

2008-12-02 Thread mandar_tambe
Hi, Is anybody having the Universal Test Tool(UTS) program specifications or the code on the embedded linux? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Starting an activity with FLAG_ACTIVITY_MULTIPLE_TASK

2008-12-02 Thread RoadRunner.Android
I am writing an application in which I want the activity to a new instance everytime it is executed, so I am applying FLAG_ACTIVITY_MULTIPLE_TASK in conjuction with FLAG_ACTIVITY_NEW_TASK in the Intent that triggers the activity. But I soon as I execute the application, I get an Force Closed

[android-developers] Rebuilding the SDK

2008-12-02 Thread ChoboMuffin
I have recently started some work on the Android SDK. (I know maybe I should have posted to android-internals but could not seem to post there for some reason). Is there any documentation or guides for making changes to the SDK? I find everytime I make a change I have to rebuild the entire SDK in

[android-developers] How to enable / disable Bluetooth

2008-12-02 Thread RM
Hi folks, I'm writing an app that will, among other things, disable Bluetooth. To do this, I've set the android.permission.BLUETOOTH_ADMIN, and inside an onClick() listener I'm using the following: Settings.System.putInt(getContentResolver(), Settings.System.BLUETOOTH_ON, 0); However, this

[android-developers] Re: ListActivity and progressbars?

2008-12-02 Thread Will Ryan
I also experienced a similar problem. This was resolved when I made sure that the root activity was calling setProgressBarIndeterminateVisibility(true); If you try to call this from Activities that have been loaded into tabs for example (where the tabs are created as a separate Activity), I

[android-developers] Re: Rebuilding the SDK

2008-12-02 Thread Jean-Baptiste Queru
The list you're looking for is probably android-platform. JBQ On Mon, Dec 1, 2008 at 6:04 PM, ChoboMuffin [EMAIL PROTECTED] wrote: I have recently started some work on the Android SDK. (I know maybe I should have posted to android-internals but could not seem to post there for some reason).

[android-developers] Re: Running java native programs on android

2008-12-02 Thread Ralf
Would you like to elaborate what you mean by native java? If by native java you mean Java byte-code (as opposed to dalvik), not directly, although you can use convert the .class to .dex before packaging them into an apk. If by native java you mean a desktop java app using another UI kit,

[android-developers] Re: Error generating final archive: null

2008-12-02 Thread Ralf
Could you give us a bit more details? - Which number is the ADT plugin ? (eclipse help about eclipse plugins) - What are the exact steps you do to get this error? E.g. right-click and context menu somewhere, and are you clicking one of the links or buttons and which view is currently open.

[android-developers] Re: Music file format supported by Android

2008-12-02 Thread Dave Sparks
MP3 (CBR and VBR up to 320Kbps), M4A (AAC LC, AAC, AAC+, enhanced AAC +), OGG, 3GP (AMR-NB and AMR-WB), WAVE (8/16-bit PCM) and MIDI (SMF0/1, XMF0/1, RTTTL/RTX, OTA, iMelody). On Dec 2, 12:14 am, Jatin [EMAIL PROTECTED] wrote: Hello, Can u please let me know the list of the Music file format

[android-developers] Re: Error generating final archive: null

2008-12-02 Thread Xavier Mathews
Can You Provide Us With A Link Or Error MSG? Plug in Maker Or Add-on Maker And Tell You Exactly What You Did When Saving And Where You Archived It! Thank You! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois

[android-developers] Re: Fast Scroll drag handle similar to Contacts ListView

2008-12-02 Thread Romain Guy
Hi, The FastScrollView is currently implemented in the Contacts application itself. It will be part of a future SDK update though. You can find the current implementation in the source code at http://source.android.com On Tue, Dec 2, 2008 at 4:48 AM, Will Ryan [EMAIL PROTECTED] wrote: I have

[android-developers] Re: Android on iPhone

2008-12-02 Thread Michael
On Dec 1, 10:37 pm, Swapnil Android [EMAIL PROTECTED] wrote: but the question is still unanswered, will ANDROID run on iPhone or iPod Touch If you look in the link posted ( http://linuxoniphone.blogspot.com/2008/11/linux-on-iphone.html ) you will see that they are asking for help porting

[android-developers] Re: ice-e on Android?

2008-12-02 Thread Michael
On Dec 2, 12:44 pm, Xavier Mathews [EMAIL PROTECTED] wrote: But Keep In Mind There Are Diffrent Java's One Of Them May Work i.e If Compatiable It Is Need To Match The API i.e And What Ever Format But Android Has It Own Interface So When It Come Down To It You Can Try But It May Not Work!

[android-developers] Re: Is it possible to use c/c++ shared object using android application

2008-12-02 Thread Fred Grott(shareme)
And most of the answers to these questions are found by using the search function on google groups.. On Dec 2, 4:57 am, Ludwig [EMAIL PROTECTED] wrote: No, native code is not supported ATM.This question has been asked a quite a few times in recent days and I would not expect the answer to

[android-developers] Re: ice-e on Android?

2008-12-02 Thread Xavier Mathews
So Even If He Writes It Still Won't Run The Java Right? On 12/02/2008, Michael [EMAIL PROTECTED] wrote: On Dec 2, 12:44 pm, Xavier Mathews [EMAIL PROTECTED] wrote: But Keep In Mind There Are Diffrent Java's One Of Them May Work i.e If Compatiable It Is Need To Match The API i.e And What Ever

[android-developers] Re: ice-e on Android?

2008-12-02 Thread Michael
Go look at what ice-e is - it's a framework for writing Java applications to run on mobile platforms. Android is not supported by it right now, so the answer to the original question is no. If he writes his app in Java *using the Android SDK*, then obviously it will run on Android. - michael

[android-developers] Re: ListActivity and progressbars?

2008-12-02 Thread Guillaume Perrot
Yes, window features can only be set in a root activity. 2008/12/2 Will Ryan [EMAIL PROTECTED] I also experienced a similar problem. This was resolved when I made sure that the root activity was calling setProgressBarIndeterminateVisibility(true); If you try to call this from Activities

[android-developers] Re: 2D over 3D

2008-12-02 Thread Robert Green
You can just do one square billboard positioned such that it is directly in front of the frustum. The texture can be transparent and you just draw what you want to have show up. That will be only 2 additional polys for the 2D. On Dec 2, 9:56 am, fcalzada [EMAIL PROTECTED] wrote: Yes i thought

[android-developers] Re: strang error with aapt on 1.0 SDK on unbuntu 8.04

2008-12-02 Thread Ralf
Would you like to elaborate? - Could you tell us what command you are executing, in which context (command line ant or eclipse?) - Could you give us the exact output generated? R/ On Sun, Nov 30, 2008 at 10:34 PM, Clay [EMAIL PROTECTED] wrote: its very strange. basically I get a No such

[android-developers] Re: insert the data in the Sqlite Database

2008-12-02 Thread Robert Green
Or you can use the provider example that the NotePad app shows. I'm using it and it didn't take me longer than an hour to get in. On Dec 2, 11:40 am, NuuNeoI [EMAIL PROTECTED] wrote: You may forget Double Quote String strsql=INSERT TABLE DataTable(Name,Mobile,City) VALUES (\+ Iname +\,\+

[android-developers] Re: Console program with service without actuvity

2008-12-02 Thread Ralf
On Sun, Nov 30, 2008 at 9:57 PM, sal123 [EMAIL PROTECTED] wrote: Hi All, 1. may i know the steps to invoke executable from adb shell. 2. do u mean, we cannot have applications in android without activity class or without subclass of activity my intention is to build a engine which keeps

[android-developers] Re: Media Player Error -38,0

2008-12-02 Thread Peter Jeffe
On Dec 1, 6:12 am, David Given [EMAIL PROTECTED] wrote: This is the generic 'I'm confused, help me' error code. -38 corresponds in the source code to 'unknown error'. It seems to appear for a whole Any idea what the -17 error from MediaPlayer means? It occurs when I'm streaming mp3s, and then

[android-developers] Re: how/where to create a custom icon for my application...?

2008-12-02 Thread DMT
Thanks. Just tried it. Works. On Nov 30, 6:00 pm, lior [EMAIL PROTECTED] wrote: Not sure about the market.. but to replace the default icon of your app. place your new image at /app name/res/drawable and update the AndroidManifest.xml file to point to your new file. application

[android-developers] Re: Running java native programs on android

2008-12-02 Thread bigauto
I wrote a java program before using eclipse with a user interface using jframe. I was wondering if I can get it to run on the android as well? On Dec 2, 1:09 pm, Ralf [EMAIL PROTECTED] wrote: Would you like to elaborate what you mean by nativejava? If by nativejava you meanJavabyte-code (as

[android-developers] Re: Running java native programs on android

2008-12-02 Thread Romain Guy
No, Swing is not available on Android. On Tue, Dec 2, 2008 at 12:02 PM, bigauto [EMAIL PROTECTED] wrote: I wrote a java program before using eclipse with a user interface using jframe. I was wondering if I can get it to run on the android as well? On Dec 2, 1:09 pm, Ralf [EMAIL PROTECTED]

[android-developers] Re: 2D over 3D

2008-12-02 Thread Dianne Hackborn
Or follow the SurfaceView Overlay API Demo. http://code.google.com/android/samples/ApiDemos/src/com/example/android/apis/graphics/ On Tue, Dec 2, 2008 at 11:11 AM, Robert Green [EMAIL PROTECTED] wrote: You can just do one square billboard positioned such that it is directly in front of the

[android-developers] Re: Starting an activity with FLAG_ACTIVITY_MULTIPLE_TASK

2008-12-02 Thread Dianne Hackborn
You need to at least post the stack crawl of the error. On Tue, Dec 2, 2008 at 4:57 AM, RoadRunner.Android [EMAIL PROTECTED]wrote: I am writing an application in which I want the activity to a new instance everytime it is executed, so I am applying FLAG_ACTIVITY_MULTIPLE_TASK in conjuction

[android-developers] Re: Wifi Ip Address

2008-12-02 Thread Andrea
Ralf: Yes, I need to know it programmatically because I have to accept incoming connections on my phone. On Dec 2, 7:11 pm, Ralf [EMAIL PROTECTED] wrote: On the device, go to the wifi settings and select the connected wifi network. It will show you its IP address. If you mean

[android-developers] Re: Loading a bitmap from a byte buffer

2008-12-02 Thread Dianne Hackborn
If that's the case, then this discussion shouldn't be on android-developers, which is for developing with the SDK. Let's move it to one of the open source platform groups. On Tue, Dec 2, 2008 at 1:00 AM, Koush [EMAIL PROTECTED] wrote: Dianne Hackborn: I am asking this in the context of how to

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread loty
Yes Xavier, Please stop posting if you have nothing of substance to say. On Dec 2, 12:21 pm, Xavier Mathews [EMAIL PROTECTED] wrote: YOU NEED TO GO FIND YOU SOME BUSINESS. On 12/02/2008, Xavier Mathews [EMAIL PROTECTED] wrote: Thats Nice. On 12/02/2008, Michael [EMAIL PROTECTED]

[android-developers] Re: com.google.wireless.gdata

2008-12-02 Thread loty
I'm also very much interested in these libraries. Can someone from Google enlighten us on when if ever these libraries become available again. On Dec 1, 11:27 pm, AndroidEngineer [EMAIL PROTECTED] wrote: Howcome com.google.wireless.gdata and com.google.android.gdata have been removed from the

[android-developers] Re: unknown socket error -1

2008-12-02 Thread strazzere
Sal, Just figured I'd post this here since it might become relevant for you. If you come across the error: 12-01 18:27:52.175: WARN/System.err(764): java.net.UnknownHostException: Host is unresolved: www.strazzere.com:80 This exception was thrown whenever .connect() or .getOutputStream() where

[android-developers] my PacMan version released

2008-12-02 Thread Andrea
Dear members, I've just published my Pacman version on AndAppstore.com and on SlideMe.org . It is still under development, so please test and report me bugs, comments and whatever you think maybe useful. I'm developing with the emulator and i have never tested it on a real device because i don't

[android-developers] Re: Getting information from the Internet

2008-12-02 Thread Xavier Mathews
It Was Of Substance! So... On 12/02/2008, loty [EMAIL PROTECTED] wrote: Yes Xavier, Please stop posting if you have nothing of substance to say. On Dec 2, 12:21 pm, Xavier Mathews [EMAIL PROTECTED] wrote: YOU NEED TO GO FIND YOU SOME BUSINESS. On 12/02/2008, Xavier Mathews [EMAIL

[android-developers] Re: HTTP compression lost when using 3G connection

2008-12-02 Thread Eric Mill
There's an issue where downloading small files (such as small 20Kish apps) get corrupted over 3G, but not wifi, that this is certainly related to. If you've ever downloaded an app, and it says that it wants to replace Android System, that's the bug, and I now blame T- Mobile (as opposed to

[android-developers] Re: G1 Linux

2008-12-02 Thread Eric Mill
This has been an awesome thread. On Dec 1, 5:33 pm, Xavier Mathews [EMAIL PROTECTED] wrote: So that means the G1 Does! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech Support Specialist Hazel Crest Illinois [EMAIL PROTECTED]@[EMAIL

[android-developers] Re: G1 Linux

2008-12-02 Thread Xavier Mathews
Why Did You Say That? On 12/02/2008, Eric Mill [EMAIL PROTECTED] wrote: This has been an awesome thread. On Dec 1, 5:33 pm, Xavier Mathews [EMAIL PROTECTED] wrote: So that means the G1 Does! Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client Based Tech

[android-developers] Re: G1 Linux

2008-12-02 Thread Dianne Hackborn
Because He Was Enthralled By The Awesomeness Of It, Like I Am Too. It Is Awesome! On Tue, Dec 2, 2008 at 2:20 PM, Xavier Mathews [EMAIL PROTECTED]wrote: Why Did You Say That? On 12/02/2008, Eric Mill [EMAIL PROTECTED] wrote: This has been an awesome thread. On Dec 1, 5:33 pm, Xavier

[android-developers] Re: G1 Linux

2008-12-02 Thread Dorn Hetzel
Totally! On Tue, Dec 2, 2008 at 5:22 PM, Dianne Hackborn [EMAIL PROTECTED] wrote: Because He Was Enthralled By The Awesomeness Of It, Like I Am Too. It Is Awesome! On Tue, Dec 2, 2008 at 2:20 PM, Xavier Mathews [EMAIL PROTECTED] wrote: Why Did You Say That? On 12/02/2008, Eric Mill

[android-developers] Re: my PacMan version released

2008-12-02 Thread Ralf
Just out of curiosity, isn't this name already licensed by a game company that actually has a very similarly named game already available on market? http://www.namcogames.com/corporate/press/4968.html R/ On Tue, Dec 2, 2008 at 12:37 PM, Andrea [EMAIL PROTECTED] wrote: Dear members, I've

[android-developers] Re: No audio picker activity?

2008-12-02 Thread fala70
Somebody know how get the image file uri ? Intent intent = new Intent(android.media.action.IMAGE_CAPTURE); startActivityForResult(intent, GET_IMAGE_FROM_CAMERA); from onActivityResult it doesn't return uri. How can I do to get uri from this kind of intent ? thanks On 1 Nov, 19:04, Guillaume

  1   2   >