[android-developers] Re: Dev Phone 2, Droid or Nexus One?

2010-02-10 Thread jamesc
The phone will work perfectly fine without a SIM, that is, you can still access the Market and download/install applications and also use GPS (although using Google Maps whilst in a car probably won't be that successful because whilst the GPS works, it'll be unlikely that you'll have a WiFi/data

[android-developers] Re: Drawing to MapView Incredibly Slow

2010-02-10 Thread aspekt9
How would I do this? On Feb 10, 1:02 am, TreKing treking...@gmail.com wrote: On Tue, Feb 9, 2010 at 9:26 PM, aspekt9 aspe...@gmail.com wrote:  There must be faster way, how does google deal with it when they display driving directions and they have all those path lines and points and such?

[android-developers] Re: Drawing to MapView Incredibly Slow

2010-02-10 Thread Neil
Only do the real work when something relevant has changed, such as the map center. Then draw to a Picture. In draw, just draw the Picture every time. Neil http://l6n.org/android/ On Feb 10, 1:11 am, aspekt9 aspe...@gmail.com wrote: In my app I am drawing bus routes on top of a MapView. The

Re: [android-developers] Re: Google Map Error

2010-02-10 Thread Daniel Drozdzewski
ok, the exception you see means that you can set content view only once; Make sure you call setContentView() method only once rather than each time you want to bring the activity to foreground. Daniel On Wed, Feb 10, 2010 at 4:44 AM, Sasikumar.S sasikumar.it1...@gmail.com wrote: Thank You

[android-developers] File browser

2010-02-10 Thread veradis
HI, I want to select an image from the mobile device when user opts to change his profile photo. But it seems there is no FILE BROWSER available on android. So, please help me to achieve the req. Also, in the default browser, the file browse button is disabled by android. How can this be done?

[android-developers] Problem in switching views

2010-02-10 Thread Shekhar
Hi All, I have to design UI such that I can update the screen with different views.I have created views dynamically in code.Created two function. 1.first view - firstview() 2.second view- secondview() On start of the activity I am calling API secondview so that screen gets updated with the

[android-developers] Re: Rotation with ListActivity

2010-02-10 Thread Noodles
Hi Chrigi! Thanks for your answer. My thread has a reference to the ListView. But I'm not sure that this is the reason, maybe it could be... but If you are right why, when i rotate display for the second times, do i see the list with data? If i lost the reference to the thread's listview, i would

[android-developers] [android 2.0]how to use bootanimaiton.zip

2010-02-10 Thread Morris
Hi All, I unzip the bootanimation.zip and get bootanimation folder. I modify the related files in the bootanimtaion folder. And then, I use winzip or winrar to compress bootanimation as bootanimation.zip. But this bootanimation.zip couldn't be used by android 2.0. Thus, does anyone know what

[android-developers] How to remove the afterimage of AutoCompleteTextView?

2010-02-10 Thread mongd
Hi, I'm having a trouble with AutoCompleteTextView. I keep getting an after image when I use AutoCompleteTextView for my app. I put a AutoCompleteTextView widget on the top of the screen, and when I click it, SIP will pop up, so I can type some text. Following is the code I used for the test:

[android-developers] Re: Soft keyboard on activity startup

2010-02-10 Thread myoc
AndroidManifest.xml add ↓ activity android:windowSoftInputMode=adjustPan http://developer.android.com/intl/ja/guide/topics/manifest/activity-element.html sorry, i can't english well.. On 1月27日, 午前7:34, HiQuLABS hiqul...@gmail.com wrote: Any solution to this? On Jan 12, 4:23 am, Petroleum

[android-developers] Re: Problem in switching views

2010-02-10 Thread skink
On Feb 10, 10:18 am, Shekhar shekhar...@gmail.com wrote: timer.schedule(new TimerTask() { public void run() { firstview( amar,akbar,anthony,Hero);} }, 5000); } I think that official SDK docs should clearly state: Please don't use Timers/TimerTasks when dealing with UI. Use

[android-developers] Re: Can't dispatch DDM chunk error

2010-02-10 Thread GK Gupta
I too agree with the description When eclipse/DDMS and another adb instance is there then this type of error is observed. I have observed same behaviour. With DDMS running I was getting the above mentioned error but once I closed DDMS error was gone. On Jan 21, 2:30 am, patrickAR

[android-developers] play audio from a stream in android...

2010-02-10 Thread kavitha
Hi All, How to play audio from a stream in android??? I will get input stream from an online link( like continuous FM). I need to cache the stream and play it. I searched a lot in sites,,,but didnt get.They show option of playing from a stored file. There is no option to play from a stream.

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread Mark Murphy
Hi All, How to play audio from a stream in android??? I will get input stream from an online link( like continuous FM). I need to cache the stream and play it. I searched a lot in sites,,,but didnt get.They show option of playing from a stored file. There is no option to play from a

Re: [android-developers] Re: i want to control speed ellipsize=marquee

2010-02-10 Thread tauntz
There you go http://code.google.com/p/android/issues/detail?id=6567 On Wed, Feb 10, 2010 at 4:46 AM, taehun zzang taehun...@gmail.com wrote: Thank you so much.:) On Feb 10, 11:35 am, Romain Guy romain...@android.com wrote: This is not possible at the moment. On Tue, Feb 9, 2010 at 6:04 PM,

[android-developers] Re: GsmCellLocation.getCid() returns very large numbers.

2010-02-10 Thread Ne0
Large ones are more then likely 3G CellId's. Put the phone on 2G only and see if you get any large numbers. On 3 Feb, 04:47, Ahmad ahm...@gmail.com wrote: Sorry for bringing up this topic from the past, but I was wondering if the OP or anyone else knows the cause or a solution to this problem

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread kavitha
Thanks for the reply Mark Murphy. But MediaPlayer doesnt play from stream.I need to play from files. when i play files,i notice some gap of mediaplayer noise in between while changing files. So any other option like i store everything in a stream and start playing from stream,,so that if i

[android-developers] Re: system hangs while giving Android build

2010-02-10 Thread James Wang
I did have the same experience before. I think 1G is not enough and your disk should be good enough. -- 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

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread Mark Murphy
But MediaPlayer doesnt play from stream. Yes, it does. I need to play from files. MediaPlayer does that too. when i play files,i notice some gap of mediaplayer noise in between while changing files. Then use two MediaPlayers. -- Mark Murphy (a Commons Guy) http://commonsware.com Android

[android-developers] Playing Video in App Widget

2010-02-10 Thread kirti kaul
Hi, I wanted to know , can we have a home screen widget in which we can play a video? Is it possible?If yes then how can it be acheived? Thanks in Advance... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] multiple buttons + dialog box

2010-02-10 Thread André
Hello, I am trying to use 6 buttons in one activity. The first 2 buttons work, but the problem is the 4 other ones that are located in a dialog box. For the first two buttons I use button1.setOnClickListener(this); which is placed in the oncreate method. For the other 4 buttons I thought I could

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread kavitha
Thanks for reply Mark Murphy. How to play from stream in media player?Can you please tell? Media player option is either from url or file. Using 2 media players is a good idea. Thanks Kavitha On Wed, Feb 10, 2010 at 5:53 PM, Mark Murphy mmur...@commonsware.comwrote: But MediaPlayer

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread Mark Murphy
How to play from stream in media player?Can you please tell? Media player option is either from url or file. Correct. A URL typically represents a resource out on the Internet. In the case of media, some players support playing back such resources on a progressive basis, as the data is

Re: [android-developers] Playing Video in App Widget

2010-02-10 Thread Mark Murphy
I wanted to know , can we have a home screen widget in which we can play a video? No, sorry. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Playing Video in App Widget

2010-02-10 Thread Narendra Bagade
I want to play video,how can i achieve? I tried this code but ,it is playing only audio means i can hear only sound but video is not display on emmulater screen? can any guide what mistake I am doing? setContentView(R.layout.*main*); mp =MediaPlayer.*create*(*this*, R.raw.*video*);

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread kavitha
Thanks Mark Murphy, Suppose i play online FM for one hour and want to listen again from start( ie music played before half an hour),,then i need to store all music in a stream and should be able to seek back to that point and start playing at that point. For this tasks,i cant rely on Media

[android-developers] Launcher activity

2010-02-10 Thread Gladys
Hi, can anyone tell me where the applications like browser,contacts, settings get populated when the Launcher activity is being launched? Is that SlidingDrawer does this population? Does the AllAppsGridView has any part in this? -- You received this message because you are subscribed to the

Re: [android-developers] multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
Hi Andre I assume that buton 3-6 are in R.layout.poput_new and not R.layout.main, in that case you call findViewById on the activity which does not contain those buttons. You need to call findViewById on the dialog after you called setContentView. Try the following: in onCreate: remove the

[android-developers] softkeyboard in Android 1.1

2010-02-10 Thread andu
How are you all I want to develop softkeyboard for android 1.1 platform. when I check the sample softkeyboard application in the emulator, some of the imported packages are not accessible. some of them are: import android.inputmethodservice.Keyboard; import

[android-developers] Re: MapView

2010-02-10 Thread Aamir Yaseen
HI TreKing, On click of navigation key I am calling setFocus(OverlayItem) of next element in my ItemizedOverlay. I am not calling nextFocus to get this element, I am iterating through index of collection to get the next element. when the focus changes and can update your overlays as necessary.

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread Mark Murphy
Suppose i play online FM for one hour and want to listen again from start( ie music played before half an hour),,then i need to store all music in a stream and should be able to seek back to that point and start playing at that point. For this tasks,i cant rely on Media player and seek

Re: [android-developers] hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii

2010-02-10 Thread Abdul Mateen
Mohammad(SAW) is the last prophet of God. This is the truth in your Bible also there are prophecies in Bible. I think you are a Jew or Illuminati worshiping Anti-Christ ( Dajjal ). On Tue, Feb 9, 2010 at 2:43 AM, Miguel Morales therevolti...@gmail.comwrote: Read the old testament, god's

Re: [android-developers] softkeyboard in Android 1.1

2010-02-10 Thread swapnil kamble
Why you want Android 1.1 ? On Wed, Feb 10, 2010 at 6:32 PM, andu alemf...@yahoo.com wrote: How are you all I want to develop softkeyboard for android 1.1 platform. when I check the sample softkeyboard application in the emulator, some of the imported packages are not accessible. some of

Re: [android-developers] Playing Video in App Widget

2010-02-10 Thread Sean Hodges
You can't play video inside an AppWidget. On Wed, Feb 10, 2010 at 12:42 PM, Narendra Bagade bagadenaren...@gmail.com wrote: I want to play video,how can i achieve? I tried this code but ,it is playing only audio means i can hear only sound but video is not display on emmulater screen? can

[android-developers] Re: Eclipse Emulator

2010-02-10 Thread Anthoni
Hi, Just to add, I only have 2GB RAM on my development machine (3GB RAM on my laptop) and the emulator (albeit slow) does function perfectly. I am using Borland JBuilder 2008 R2 (using the Eclipse Plugin perfectly), Windows XP Service Pack 2 and on an AMD Athlon 64 X2 if that is of any help.

[android-developers] Re: Move buttons within Layout

2010-02-10 Thread Kritzli
Ok. Here's some more information about my App. I'm going to create a keyboard app. Or rather an App where you can define your own keyboard. Therefore I have two Activities A and B. Activity A: Here I want to create a single key. This is currently realized by configuring a button. The buttons size

Re: [android-developers] play audio from a stream in android...

2010-02-10 Thread kavitha
Please tell me some solution for it. I am ready to work hard,,but dont know how to proceed,, please enlighten me Thanks Kavitha On Wed, Feb 10, 2010 at 6:38 PM, Mark Murphy mmur...@commonsware.comwrote: Suppose i play online FM for one hour and want to listen again from start( ie music

[android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread André
Thanks for you reply Chrigi! I tried what you suggested but the problem still looks exactly the same. Would you happen to have any other suggestions? Cheers André On Feb 10, 2:01 pm, Christoph Renner chrigi.ren...@gmail.com wrote: Hi Andre I assume that buton 3-6 are in R.layout.poput_new

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
What exactly is the problem? Is there a compiler error or is an exception thrown when executing? In both cases, an error message might be useful. Cheers, Chrigi On Wed, Feb 10, 2010 at 2:39 PM, André pha...@hotmail.com wrote: Thanks for you reply Chrigi! I tried what you suggested but the

[android-developers] Strange NullPointerException in WebView.onTouchEvent in Android 2.1 Update 1

2010-02-10 Thread Stefan
For some reason, since upgrading to Android 2.1 Update 1 (stock Nexus One), I occasionally get NullPointerException in WebView.onTouchEvent method. It does not happen all the time and that makes it difficult to track down. Here is the stack trace: java.lang.NullPointerException at

[android-developers] Re: Keyboard Character Replacement

2010-02-10 Thread jamesc
Take a look at this document: http://developer.android.com/resources/articles/on-screen-inputs.html On Feb 10, 4:47 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi, How to replace a keyboard character?.. Ex:-  'Enter' Button should be changed to 'Search' or 'Done'

[android-developers] Re: Controlling radio devices.

2010-02-10 Thread flsobral
Anything I can use instead of BluetoothAdapter with API level 4? On Feb 9, 2:06 pm, flsobral flsob...@gmail.com wrote: Oh crap, I just noticed BluetoothAdapater is API level 5. What can I use with API level 4? On Feb 9, 12:33 pm, flsobral flsob...@gmail.com wrote: Hello. I'm looking

[android-developers] How to detect correctly APN changes

2010-02-10 Thread mariush
In my application I need to react on APN changes (including going back and forth between WiFi and GSM connections) and change proxy settings in case it needs to be taken into account to connect with the network. I'm listening for ConnectivityManager.CONNECTIVITY_ACTION broadcasts to check for APN

[android-developers] Re: Do multiple overlays slow map response?

2010-02-10 Thread ian
Thanks for the advice Bob, I am considering collapsing the overlays into a single one. I did so with another overlay which shows the intended route. But displaying even this slows down response more than I would have expected for a single overlay layer. I will take your advice however and keep

[android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread André
This is what I get on the InvocationTargetExce // Compiled from InvocationTargetException.java (version 1.5 : 49.0, super bit) public class java.lang.reflect.InvocationTargetException extends java.lang.Exception { // Method descriptor #8 ()V // Stack: 3, Locals: 1 protected

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
This is not really useful, could you use logcat (either in eclipse or by running adb logcat) to get to the stack trace which gives information about the exception thrown? On Wed, Feb 10, 2010 at 2:54 PM, André pha...@hotmail.com wrote: This is what I get on the InvocationTargetExce // Compiled

[android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread n179911
Basically, I want: --- | ImageView | TextView fill up the rest| ImageView | --- How can I do that? I have put

Re: [android-developers] Re: OpenGL ES 2.0 on Eclair

2010-02-10 Thread Justin Giles
How about a ballpark guess? Months? Years? Hey, me too! Trying to find a good book on OpenGL ES 1.x is tough. Finding one with OpenGL ES 1.x + Java is near impossible. There seems to be an abundance of OpenGL ES 2.0 books available and the documentation + examples is much easier to find

[android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread André
I've never used logcat before but I think I got it right. Here is a link to it: http://www.andreborud.com/android/trace2.txt Thanks André On Feb 10, 3:01 pm, Christoph Renner chrigi.ren...@gmail.com wrote: This is not really useful, could you use logcat (either in eclipse or by running adb

Re: [android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread Narendra Bagade
use android:layout_marginLeft or android:paddingLeft Narendra On Wed, Feb 10, 2010 at 7:47 PM, n179911 n179...@gmail.com wrote: Basically, I want: --- | ImageView | TextView fill up the rest|

[android-developers] MediaStore -- how to add a video

2010-02-10 Thread ber4444
Anything like MediaStore.Images.Media.insertImage() for videos? -- 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: launch activity from on-screen Camera/Capture button?

2010-02-10 Thread Abhi
anyone? On Feb 8, 1:24 pm, Abhi abhishek.r.sha...@gmail.com wrote: Hi, Is it possible to start an activity from the built-in Camera app after the user touches the on-screen Capture button? Abhi -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: How can I align an ImageView to the right of the Parent?

2010-02-10 Thread n179911
Thanks. But I want android framework to align my ImageView with its parent for me. Instead of adjust it myself pixel by pixel. On Wed, Feb 10, 2010 at 6:24 AM, Narendra Bagade bagadenaren...@gmail.com wrote: use android:layout_marginLeft  or android:paddingLeft Narendra On Wed, Feb 10,

Re: [android-developers] Re: multiple buttons + dialog box

2010-02-10 Thread Christoph Renner
It should look like the second example on http://youtrack.jetbrains.net/issue/IDEA-24746 . If you run adb logcat this text should appear when your application crashes. On Wed, Feb 10, 2010 at 3:24 PM, André pha...@hotmail.com wrote: I've never used logcat before but I think I got it right. Here

[android-developers] how to retrieve the database value from the our web application

2010-02-10 Thread saravanan p
hi i want manage our web application using an android application. we want to the database connection object. we are using mysql database. and i want to post the data to my server. so please help me for this solution. Thanks P.Saravanan -- You received this message because you are subscribed

Re: [android-developers] how to retrieve the database value from the our web application

2010-02-10 Thread Upendra Chintala
Hi Saravanan, As I know, there is no way you can directly connect to your database from android app. This is the usual way people are using this scenario. 1. Expose your data from your webapp or database as a web service(REST or SOAP). 2. Access the web service from Android app using

Re: [android-developers] Re: accelerometer driver example?

2010-02-10 Thread Robin Getz
On Tue 9 Feb 2010 20:48, Lance Nanek pondered: This mentions the accelerometer: http://pdk.android.com/online-pdk/guide/sensors.html Thanks - that helps, but - I'm to understand that there is no kernel/userspace API standard for sensors, and that every device manufacture is on their own to

[android-developers] Re: Putting Views on top of other views.

2010-02-10 Thread Nathan
No ideas? I thought that several of you would be good at this by now. Do I need to create a custom layout class? Or will one of the existing layouts work? Nathan On Feb 9, 4:46 pm, Nathan nathan.d.mel...@gmail.com wrote: I'm still trying to figure out how best to layer views on top of other

Re: [android-developers] Re: Putting Views on top of other views.

2010-02-10 Thread Mark Murphy
Or will one of the existing layouts work? Try RelativeLayout instead of FrameLayout. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Weird stuff - help!

2010-02-10 Thread nikhil
any one? On Feb 9, 4:59 pm, nikhil nik...@gmail.com wrote: Okay I am facing this problem for quiet some time. Description of my app: I have an app which has a service running in the background. In this service I am polling a webservice every 10 seconds to get updates, if any. I am using

[android-developers] how to animate a view across layouts

2010-02-10 Thread yaturner
I have a RelativeLayout with numerous child layouts which in turn have images in them, I wish to animate an ImageView in one of the child layouts such that it appears to move from its starting position in one child Layout and stop in another. I can start the image in the correct Layout with the

[android-developers] Re: WebView

2010-02-10 Thread nikhil
you also need to add webviewclient and webchromeclient On Feb 9, 10:45 pm, Sandeep Phansekar sandeep.phanse...@gmail.com wrote: add following in your *manifest.xml* file uses-permission android:name=*android.permission.INTERNET* / -- Regards Sandeep On Wed, Feb 10, 2010 at 8:51 AM, Breezy

[android-developers] Re: System.out.println(...) statements within the onCreate

2010-02-10 Thread intbt
You can use System.out - The output also appears on Logcat (not console) with a system.out tag. On Feb 9, 9:56 pm, Sandeep Phansekar sandeep.phanse...@gmail.com wrote: Instant of  System.out.println(...)  use Log.e( class/method name ,Error message); And view the output in Logcat in Eclipse

Re: [android-developers] Re: MapView

2010-02-10 Thread TreKing
On Wed, Feb 10, 2010 at 7:05 AM, Aamir Yaseen aamir.yas...@gmail.comwrote: when the focus changes and can update your overlays as necessary. that's my question, how can I update/change icon of my overlay item? any idea? OverlayItem has a setMarker() function that allows you to set the

[android-developers] Re: Dev Phone 2, Droid or Nexus One?

2010-02-10 Thread cmarin
Thanks again James, much appreciated. On Feb 9, 11:59 pm, jamesc jame...@gmail.com wrote: The phone will work perfectly fine without a SIM, that is, you can still access the Market and download/install applications and also use GPS (although using Google Maps whilst in a car probably won't be

Re: [android-developers] Re: Drawing to MapView Incredibly Slow

2010-02-10 Thread TreKing
On Wed, Feb 10, 2010 at 2:35 AM, aspekt9 aspe...@gmail.com wrote: How would I do this? With a simple bounds check against the viewable area. You mapview tells you the center, the latitude span and the longitude span. You have the locations of all your points. If you point is in the view, draw

Re: [android-developers] Re: Showing Custom Dialog

2010-02-10 Thread TreKing
On Wed, Feb 10, 2010 at 12:17 AM, YCH yip@gmail.com wrote: After replacing getApplicationContext() with this, I am still having the same problem. Any ideas? Thanks! Try using AlertDialog.Builder to create your dialog.

[android-developers] how to access MTP library through Android ?

2010-02-10 Thread zeeshan
Hi Dear, i recently started exploring about MTP (Media Transfer Protocol) for Android. according to the thread below, G1 supports MTP http://forums.t-mobile.com/t5/ARCHIVED-Help-How-To/Synchronizing-music-with-Windows-Media-Player/m-p/4561#M5079 now what i understand is that, MTP is not a part

[android-developers] Play time

2010-02-10 Thread Fossum
Once my song uri is playing in the media player, how do I get it to stop after a minute? Currently I can call mp.getCurrentPosition() or access system time, but both are ungodly taxing on runtime and such. How do I notify the player, or just call stop after n milliseconds? Thanks, Eric -- You

[android-developers] Re: Media Player Issues With Song ID's

2010-02-10 Thread Fossum
Figured it out. Just needed to set my uri to external_uri appended with the id -- 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

Re: [android-developers] hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii

2010-02-10 Thread Miguel Morales
I'm not a jew, I'm Christian. Mohammad was a prophet for the catholic church. Not of God, his teachings directly contradict God's word in the old testament. Ishmael was a bastard child, not part of Isaac's covenant. There is a covenant with Ishmael, but as it says in the old testament, it is

[android-developers] Re: Putting Views on top of other views.

2010-02-10 Thread Nathan
Thanks, Mark. I'll give that a try. On Feb 10, 7:26 am, Mark Murphy mmur...@commonsware.com wrote: Or will one of the existing layouts work? Try RelativeLayout instead of FrameLayout. -- Mark Murphy (a Commons Guy)http://commonsware.com Android App Developer

[android-developers] Re: Different class files are generated using Eclipse Ant

2010-02-10 Thread joebowbeer
Eclipse uses its own compiler. There's an adapter you can use in Ant (if you really need this level of parity). org.eclipse.jdt.core.JDTCompilerAdapter On Feb 9, 7:37 am, Derek Lee drea...@gmail.com wrote: Hi, I'm using Eclipse GALILEO, android 1.6, and Ant 1.8.0RC1 version. After building

[android-developers] Re: problems using SCREEN_DIM_WAKE_LOCK

2010-02-10 Thread guich
Hi Sean, Thanks for your help. However, the SCREEN_BRIGHTNESS doesn't work. Digging into old messages, there's a IHardwareService interface, but i can't even use it since its already removed. Seems that i'm lost... thx guich -- You received this message because you are subscribed to the

[android-developers] Re: How to detect correctly APN changes

2010-02-10 Thread Michael Elsdörfer
Maybe try your luck with ACTION_ANY_DATA_CONNECTION_STATE_CHANGED: http://www.google.com/codesearch/p?hl=en#uX1GffpyOZk/telephony/java/com/android/internal/telephony/TelephonyIntents.javaq=ANY_DATA_STATEsa=Ncd=2ct=rcl=64 It's not advertised in the public SDK, but Sipdroid seems to use it.

[android-developers] Re: MapView

2010-02-10 Thread Aamir Yaseen
Yes, but it does not work when we override getMarker(int stateBitset) method to return StateListDrawable icon (I want to use StateListDrawable so that I don't have to set icon on state change as recomended by google), but I it's not helping. what do you suggest in this case? Thanks again, Aamir

Re: [android-developers] how to animate a view across layouts

2010-02-10 Thread Romain Guy
To prevent the clipping you can simply disable children clipping on the various containers of your view hierarchy. On Wed, Feb 10, 2010 at 7:32 AM, yaturner thursdayn...@gmail.com wrote: I have a RelativeLayout with numerous child layouts which in turn have images in them, I wish to animate an

Re: [android-developers] Re: MapView

2010-02-10 Thread TreKing
On Wed, Feb 10, 2010 at 11:21 AM, Aamir Yaseen aamir.yas...@gmail.comwrote: what do you suggest in this case? I haven't done anything with StateListDrawable or the states in the overlay item so unfortunately I'm out of ideas for you. Sorry.

[android-developers] Re: System.out.println(...) statements within the onCreate

2010-02-10 Thread Bob Kerns
Yes, but it's much less useful, because it always gets tagged with system.out. It really should be discouraged, especially in production code. Imagine if you've got a dozen things running (I've got more), and they all used System.out instead of Log? On Feb 10, 7:39 am, intbt in...@tacberry.com

[android-developers] Bluetooth support in Android 1.5

2010-02-10 Thread Indu
I am working on a module that need Bluetooth support. Our application should support Android 1.5 onwards. I saw that in Android 1.5 the android.bluetooth package is not supplied. What is the alternative in 1.5? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Good opportunity for the shoppingreps .com

2010-02-10 Thread mathi
Social Networking has been effectively used in reaching the goal of bringing down the prices of costly items through volume shopping. Go shopping with http://www.shoppingreps.com?SourceId=1244 You can earn online, NO INVESTMENT, NO DEPOSIT, NO MLM and NO JOINING FEES!

[android-developers] Programatically answering a call

2010-02-10 Thread Eil
I'm experiencing the same problem. I saw a few links for people who try to do the same and think the ACTION_ANSWER would not work due to internal's implementation e.g: http://www.anddev.org/viewtopic.php?p=34497 Anyone who knows a workaround which can help in programatically intercept an incoming

[android-developers] Listening to Settings application Intents

2010-02-10 Thread Keyston Clay
I have just looked through the api docs and noticed that none of the Settings/Settings.System intents are Broadcast Action tagged. So i was wondering if there is another way to listen to ALL click events,if so I wanted to prohibit certain intents from showing by some like intent.preventDefault() (

[android-developers] tabwidget page moving

2010-02-10 Thread Hyuk Nam-Kung
Was divided into two tabs, as follows. maintab.java] tab0.setIndicator(, getResources().getDrawable(R.drawable.b01)).setContent(new Intent(this, StartPage.class)); tab1.setIndicator(, getResources().getDrawable(R.drawable.w02)).setContent(new Intent(this, SecPage.class)); During the first tab

[android-developers] Good opportunity for the shoppingreps .com

2010-02-10 Thread mathi
Social Networking has been effectively used in reaching the goal of bringing down the prices of costly items through volume shopping. Go shopping with http://www.shoppingreps.com?SourceId=1244 You can earn online, NO INVESTMENT, NO DEPOSIT, NO MLM and NO JOINING FEES!

[android-developers] TIPS FOR HEALTHY AND BEAUTY TIPS

2010-02-10 Thread suu
see the web site,get more ideas for how to become a beauty one www.easyinternetmoney.50webs.com www.softec35.blogspot.com http://123maza.com/50/amaze21 T H A

[android-developers] Re: Problem getting Bluetooth RSSI (Signal Strength)

2010-02-10 Thread Fernando Miguélez Palomo
It may not work because EXTRA_RSSI value is a short type instead of int. This works great for me: short rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI, Short.MIN_VALUE); Take into consideration that rssi values are usually negative (it could be dBm but I am not sure). On 28 ene, 20:47,

[android-developers] Re: Android Market Developers site

2010-02-10 Thread Vaikunth
What is the meaning of you are verified as a Developer in good standing.? And who can verified? Please reply. Thanks On Feb 9, 4:08 pm, Vaikunth vaikunth.kraffs...@gmail.com wrote: Hi, Can anyone tell me what it is inandroidmarketAgreement? 2.2 You may not use theMarketto distribute

[android-developers] Health Tips for Children

2010-02-10 Thread jana
Health Tips for Children The above health tips for children are some of the ways you can keep your family's health on the right track. It's especially important to keep up with good ...

[android-developers] Receiver for Gtalk messages

2010-02-10 Thread matroska
Hi, I am wondering if it is present a way to be notified of a new gtalk chat message once arrived. Where is it possible to see which are the available receivers given by default android apps? Thanks in advance -- You received this message because you are subscribed to the Google Groups Android

[android-developers] NATURAL U.S.A PUZZZZYYY MMMIILLLKKKYYY BOOOBBSSSS

2010-02-10 Thread bala a
NATURAL U.S.A PUYYY MMMIILLLKKKYYY BOOOBB http://businessmang.blogspot.com/ http://businessmang.blogspot.com/ http://businessmang.blogspot.com/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] hiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii

2010-02-10 Thread Ricardo A . Sá
This is the religion.. http://www.thechurchofgoogle.org/ Relax fanatics.. Its just a jokey.. =) hugs 2010/2/10 Miguel Morales therevolti...@gmail.com I'm not a jew, I'm Christian. Mohammad was a prophet for the catholic church. Not of God, his teachings directly contradict God's word in

[android-developers] We are seeking a highly skilled Mobile Developer

2010-02-10 Thread Kim Abunado
SourcePad is a New York City based Internet company focusing on outsourcing services for SME. Our company practices a groundbreaking work environment where collaboration is exercised throughout all levels of the company. We are looking for a solid team of developers dedicated to creating a world

[android-developers] Android for Toshiba Portege G810

2010-02-10 Thread Wasserkopf Von Wasser
Hello, I was wondering if is there any Android version for Toshiba Portege G810. If so, please send me an e-mail to di4...@gmail.com ... Thanks in advance ;) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] A good opportunity to investment

2010-02-10 Thread anitha raj
Social Networking has been effectively used in reaching the goal of bringing down the prices of costly items through volume shopping. Go shopping with http://www.shoppingreps.com?SourceId=1243 You can earn online, NO INVESTMENT, NO DEPOSIT, NO MLM and NO JOINING FEES!

[android-developers] A good opportunity to investment

2010-02-10 Thread anitha raj
Social Networking has been effectively used in reaching the goal of bringing down the prices of costly items through volume shopping. Go shopping with http://www.shoppingreps.com?SourceId=1244 You can earn online, NO INVESTMENT, NO DEPOSIT, NO MLM and NO JOINING FEES!

[android-developers] Communicating with local computer

2010-02-10 Thread ana
Hi! If I connect an Android Phone to PC using USB cable, what options do I have in communicating between the phone and the PC? I would like to achieve following communication features in my application: 1) Java application on PC should be able to recognize when a phone with my app is connected

[android-developers] How to add sms to inbox by making locally

2010-02-10 Thread mgk
I want to make sms and add inbox it for testing sms. But I don't find any idea about that. There is anyone that know about it? -- 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] Force Close upon pressing button +7 times.

2010-02-10 Thread douglas
Hello, I have a small issue here I am running Eclipse 3.5x in Ubuntu 9.10 and have a MyTouch 3g running 1.6 Cupcake. I created a small app similar to a soundboard as one of my first apps, though I seem to be having issues with MediaPlayer. I have never written a line of code in Java before, so I

[android-developers] How to get Postal/Home address from a contact saved in contacts list android1.5

2010-02-10 Thread akkilis
Hi All, I am working on an application in which i have to fetch the Postal or Home address of any contact from the contact list. I want to open contact list and when i click on any contact item I should get its Postal Address or Home address in return. But I am not able to figure it out. I am

  1   2   >