[android-developers] How Can I Remove Top Title Bar from an Application? Or Add things to it...

2008-12-15 Thread Moto
The following pictures should give you and idea. All I want to do is or remove it completely or add my own png file with some text, which is better idea... :P Thanks! Moto! Sample: img141[dot]imageshack[dot]us/my[dot]php?image=presentation2ka0[dot]png

[android-developers] Re: How Can I Remove Top Title Bar from an Application? Or Add things to it...

2008-12-16 Thread Moto
Great thanks guys! I will be trying this out! -Moto --~--~-~--~~~---~--~~ 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] Port 554 closed?

2008-12-18 Thread Moto
as if no messages were getting to it from my server. I hope you can understan what I'm trying to achieve here. I'm not sure if there are some firewalls? I'm using a G1 phone to test this. Thanks! Moto Here is my code: Thread 1: //1. creating a server socket providerSocket = new ServerSocket(8554

[android-developers] Debugging HTTP streaming using MediaPlayer

2008-12-18 Thread Moto
the deal is no audio on the Device... I heard read that there are issues with this... but I wonder how this could be worked out to get it working... Was this solved ? is there a setting I could do? Thanks! Moto! --~--~-~--~~~---~--~~ You received this message

[android-developers] What are the MediaPlayer Class upcoming fixes?

2008-12-20 Thread Moto
I'm currently trying to plan ahead of time building my code. So in order to design it properly I need to know the following... 1. Will upcoming release of the SDK have support for an input stream on the MediaPlayer class? 2. Will http streaming finally be fixed? Thanks, Moto

[android-developers] How to import an already setup Layout in code?

2008-12-21 Thread Moto
Hello currently I'm making my custom ListAdapter and I add my Text Views the following way: LinearLayout.LayoutParams radioParams = new LinearLayout.LayoutParams (320, LayoutParams.FILL_PARENT); radioParams.setMargins(1, 1, 1, 1); TextView stationName = new TextView( context );

[android-developers] Re: How to import an already setup Layout in code?

2008-12-21 Thread Moto
()); TextView genreType =(TextView)inflatedElementView.findViewById (R.id.textNowPlaying2); genreType.setText(radioInfo.getGenre()); return inflatedElementView; } -Moto --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] How to bind to a Service only if it was already running?

2008-12-22 Thread Moto
start and finish the Service. Other activities just try to hook to the Service if it was running. This other Activities use callbacks to display Service status. Thanks for your time and help! Regards, Moto! --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: How to bind to a Service only if it was already running?

2008-12-22 Thread Moto
Hey JP thanks for your reply! So I'm looking at what your saying but bindService() says it will create the service if needed... and I don't want that... do the flags have something to do with creating or not? // bindService(Intent

[android-developers] Re: How to bind to a Service only if it was already running?

2008-12-22 Thread Moto
Adding a little more info: The service is Remote so it runs forever until I kill 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] Re: Media Player surprises me!

2008-12-26 Thread Moto
Hey Ninad, Post some code might help... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] TextView Under Growing ListView

2008-12-28 Thread Moto
Hi, I'm currently trying to display a TextView on the top and bottom of my screen and in the middle my ListView. The problem is that when my ListView grows it pushes my bottom TextView out of the screen. How can I overcome this? Thanks! here is current XML: XML: ?xml version=1.0 encoding=utf-8?

[android-developers] Re: What's the usage of the card when register android market account

2008-12-29 Thread Moto
Dude Your way off topic here... And yes that card number is for your registration fee... On Dec 22, 10:08 pm, He Yunlong b20...@freescale.com wrote: Hi, Guys,         I am registering account in android market, it need a card number, I wonder whether it's only used for pay the register fee

[android-developers] Re: TextView Under Growing ListView

2008-12-29 Thread Moto
Thanks for your help! It solved my issue and also helped me understand a lot better how Layouts work... Moto --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] How To Custom Horizontal Scroll?

2009-01-04 Thread Moto
on a layout? A little hard coded Horizontal moving of a Layout. Move Item Horizontally: LinearLayout tbl = (LinearLayout)findViewById( R.id.MenuBarLayout ); tbl.scrollTo(40, 0); Hopefully someone can point me to the right direction... Thanks, Moto

[android-developers] Re: How To Custom Horizontal Scroll?

2009-01-05 Thread Moto
Wow very nice! I'll make sure I try this out later today! See if it helps :) Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: How To Custom Horizontal Scroll?

2009-01-05 Thread Moto
I tried using your code but I'm not sure if I can listen for event on my LinearLayout...? I say this because I've been trying to get a touch event and it just doesn't happen. Any pointers? Thanks! Here is my XML layout LinearLayout android:id=@+id/MenuBarLayout

[android-developers] Re: How could I know a Service is already started?

2009-01-06 Thread Moto
I'm also interested on your solution but could you explain a little more? new Binder? Thanks, Moto! --~--~-~--~~~---~--~~ 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: How To Custom Horizontal Scroll?

2009-01-08 Thread Moto
Hey Roland thanks for your code it really helps figuring out things... I just tried running it and what I do notice is that touch events for the list are never received so that one could make a selection on the list or Scroll down... Have you noticed this?

[android-developers] Re: How To Custom Horizontal Scroll?

2009-01-08 Thread Moto
Also let me ask you this: I'm trying to get the total length of my LinearLayout which contains few buttons all positioned horizontally roughly 600px. Now when I try to get the width of that layout it returns the width of the what is only shown, essentially the screen width... So I tried setting

[android-developers] Re: How To Custom Horizontal Scroll?

2009-01-09 Thread Moto
Hey Roland, yeah I did try doing super(ev) as the code above: @Override public boolean dispatchTouchEvent(MotionEvent ev){ dispatchTouchEvent.super(ev); mGestureDetector.onTouchEvent(ev); return true; } This would allow me to scroll down but definitely messes things up. I

[android-developers] Re: Error: Read and parse xml file

2009-01-16 Thread Moto
A little more info would be helpful... Also, It would be interesting to see your ExampleHandler... -Moto --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] How to create a Custom Clickable Area Non-Standard Square ?

2009-03-15 Thread Moto
Hi, I'm currently trying to create a custom clickable button... The shapes of the buttons are not your standard type. They are circle and a rotated rectagle button How do I go about this? is there a simple way? also how could I rotate a button? Thanks, Moto

[android-developers] Re: How to create a Custom Clickable Area Non-Standard Square ?

2009-03-16 Thread Moto
Anyone!? --~--~-~--~~~---~--~~ 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] Creating a Custom Shapped Button using Canvas? Is it possible?

2009-03-25 Thread Moto
I guess the title says it all Could I technically make a custom button using this Class? Thanks! Moto! --~--~-~--~~~---~--~~ 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: Creating a Custom Shapped Button using Canvas? Is it possible?

2009-03-25 Thread Moto
But would the touch area be only around my weird shaped area? or just the typical rectangular area? --~--~-~--~~~---~--~~ 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] Sliding Text just like the phone's icon texts??

2009-04-01 Thread Moto
Could someone let me know how exactly android makes the sliding text on an icon slide up to the end of the text? Currently I'm using TranslateAnimation to slide the text, but this is hard since text can change lengths and just gets too complex... :( Help!? Thanks! Moto! my current code

[android-developers] Re: Sliding Text just like the phone's icon texts??

2009-04-02 Thread Moto
Help? PLeasE? --~--~-~--~~~---~--~~ 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: Sliding Text just like the phone's icon texts??

2009-04-07 Thread Moto
Great that works! But I wonder how one could control the speed and repetitions, reverse it...? Anyone have any ideas? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] How To Rotate A View?

2009-04-07 Thread Moto
(CustomButtons,onDraw); c.rotate(90); super.onDraw(c); } but nothing happenS! :( Help? Thanks Moto! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: How To Rotate A View?

2009-04-08 Thread Moto
Anyone? It seems that no one has this problem, or am I looking in the wrong place? --~--~-~--~~~---~--~~ 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: Sliding Text just like the phone's icon texts??

2009-04-08 Thread Moto
Nice! but there is no reverse animation at the end of the slide? because currently it just goes right back to the start... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Sliding Text just like the phone's icon texts??

2009-04-08 Thread Moto
It would have been nice to be able to set if you like it to reverse animation at the end... and loop infinity if needed Moto! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: How To Rotate A View?

2009-04-08 Thread Moto
I know I say I want a lot on this post :P I guess would be I wis --~--~-~--~~~---~--~~ 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: How To Rotate A View?

2009-04-08 Thread Moto
Graphical design restrictions... --~--~-~--~~~---~--~~ 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

[android-developers] Re: Distinguishing Between Edge and 3G network

2009-04-18 Thread Moto
; case TelephonyManager.NETWORK_TYPE_UMTS: Log.i(CONNECTION, UMTS); break; } might do the trick ;) Moto! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Distinguishing Between Edge and 3G network

2009-04-18 Thread Moto
I believe what you are saying is true, but as of now this is the best and fastest way to achieve a guess as of how fast the users data connection is... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Distinguishing Between Edge and 3G network

2009-04-20 Thread Moto
I believe GPRS is 3G --~--~-~--~~~---~--~~ 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: android 1.5: How do we use the AudioTrack class?

2009-04-23 Thread Moto
I thought you could continuously write data into the AudioTrack as long as the buffer size specified at the creation of the AudioTrack was not exceeded... and you can call play() as long as there was enough data to start playback... --~--~-~--~~~---~--~~ You

[android-developers] Re: android 1.5: How do we use the AudioTrack class?

2009-04-23 Thread Moto
Ok at this point I only get white noise? do I need to set the decoder? it's an MPEG stream could a AAC+ be now supporteD? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: android 1.5: How do we use the AudioTrack class?

2009-04-23 Thread Moto
lol yeah definitely true! But for some reason I thought it would be decoded into a playable format... How do we play AAC+ formats and MPEG formats? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: android 1.5: How do we use the AudioTrack class?

2009-04-23 Thread Moto
The issue is that you still can't stream from a radio station online only an MP3 file from a server... Romain Guy could you help? ^.^ Thanks Marco! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: android 1.5: How do we use the AudioTrack class?

2009-04-23 Thread Moto
Up to now I feel very discouraged by the new libraries... Yes they are doing many good things for Media but when it comes to streaming internet radios this really sucks... or maybe I'm just not understanding how to do this... :( Please help...

[android-developers] Re: android 1.5: How do we use the AudioTrack class?

2009-04-26 Thread Moto
Help? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: android 1.5: How do we use the AudioTrack class?

2009-04-26 Thread Moto
Yeah, currently that's my method... o well I thought something like the AudioTrack would be nice... were you can select the type of audio to decode not just PCM :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Android 1.5 - Does MediaPlayer support HTTP 1.1 Transfer-Encoding = chunked?

2009-04-26 Thread Moto
The tittle asks the question... :) Thanks! Moto! --~--~-~--~~~---~--~~ 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

[android-developers] How to change the ListView black top/bottom fade effect color.

2009-01-27 Thread Moto
Hello all! Well, I wanted to see if I could change the top/bottom wrap fading effect seen on most long scrolling components. In this case I would like to change the color from black to whatever color I desire on a ListView. Is this possible? Thanks, Moto

[android-developers] Re: How To Custom Horizontal Scroll?

2009-01-27 Thread Moto
super.dispatchTouchEvent! public boolean dispatchTouchEvent(MotionEvent ev) { gestureScanner.onTouchEvent(ev); super.dispatchTouchEvent(ev); return true; } I hope this helps! Moto! --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: How to change the ListView black top/bottom fade effect color.

2009-01-28 Thread Moto
Thanks for your help! I'll try this feature. ^.^ Moto! --~--~-~--~~~---~--~~ 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] Re: Gesture detection

2009-01-28 Thread Moto
? Thanks! Moto! --~--~-~--~~~---~--~~ 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

[android-developers] Re: Gesture detection

2009-01-28 Thread Moto
I currently have a class that handles some complex scrolling of a view... this class implements OnGestureListener and in that class I have no way of telling when the event OnUp() is triggered... I have all other touch event handlers that OnGestureListener provides except OnUp() Thanks..

[android-developers] Re: Gesture detection

2009-01-29 Thread Moto
I currently use onFling() but this isn't called all the time. You can have onScroll() event happening without onFling() action following... That's from my experience... I assume onFling() is how fast you do a swipe. So because onFling() isn't called all the time my code doesn't do what it

[android-developers] Re: Gesture detection

2009-02-02 Thread Moto
Phill, Moto! --~--~-~--~~~---~--~~ 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

[android-developers] Re: Suggestion for Android Market

2009-02-09 Thread Moto
Yes! I also agree with this Idea... For now I just placed my webpage link on my application but in a way this won't help for a user trying to deside should I install this App or not? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] How to use AsyncPlayer ()??? Uri?

2009-02-16 Thread Moto
! Moto! --~--~-~--~~~---~--~~ 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

[android-developers] Re: How to use AsyncPlayer ()??? Uri?

2009-02-18 Thread Moto
, will solve this issue... Would you agree? or am I way off? if this isn't an option, would you happen to suggest a way to achieve gap-less playback using multiple files? Thanks! Moto! --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] MemoryFile to create a file in memory?

2009-02-20 Thread Moto
Hello, Could someone let me know how I could get a File path from a file create in memory using MemoryFile class? I was able to create one but I can't seem to know how to obtain a pointer path to this file in memory so that I could give it to MediaPlayer... Help? Thanks! Moto

[android-developers] Re: MemoryFile to create a file in memory?

2009-02-20 Thread Moto
Thanks for your reply Marco... I'm trying to somehow trick MediaPlayer into reading a buffer with audio. I'm not too sure how that would playout but at this point I'm trying everything to get audio streaming working --~--~-~--~~~---~--~~ You received this

[android-developers] Re: MemoryFile to create a file in memory?

2009-02-21 Thread Moto
the data is generated on the fly you can say since it is being retrieved from a UDP connection using an InputStream. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: MemoryFile to create a file in memory?

2009-03-04 Thread Moto
MediaPlayer and it won't care how much data I pass untill the connection is terminated. I don't understand this side of the logic... Could someone explain??? Thanks! Moto! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] [Poll?] Android should provide remote database access for applications...

2009-09-19 Thread Moto
will be constantly changing android phones as new better ones come out... Well you get the idea... So what you think? GOOGLE you too! :) -Moto! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group

[android-developers] Re: What is the best way to backup app database to a file?

2009-09-20 Thread Moto
When doing: //open your existing DB InputStream dbStream = mContext.getAssets().open(yourDBName); I'm not able to start reading... Do I need a particular permission type? Also, when writing back to that location a new database which permission should be set? Thanks, -Moto! On Sep 8, 12:37 pm

[android-developers] Re: What is the best way to backup app database to a file?

2009-09-20 Thread Moto
I take that back... It actually works without any permission as it should... File f1 = ctx.getDatabasePath(appDatabase.db); InputStream in = new FileInputStream(f1); -Jona On Sep 20, 2:19 pm, Moto medicalsou...@gmail.com wrote: When doing: //open your existing DB InputStream dbStream

[android-developers] Re: What is the best way to backup app database to a file?

2009-09-20 Thread Moto
I take that back... It actually works without any permission as it should... File f1 = ctx.getDatabasePath(appDatabase.db); InputStream in = new FileInputStream(f1); - Moto! On Sep 20, 2:19 pm, Moto medicalsou...@gmail.com wrote: When doing: //open your existing DB InputStream dbStream

[android-developers] Widgets and custom components?

2009-09-27 Thread Moto
Are widgets currently not supporting any type of custom components? I've tried creating a very simple custom TextView component and it does not work when displaying the widget... Also, can we use the animation classes in widgets? Thanks, -Moto

[android-developers] Re: Widgets and custom components?

2009-09-27 Thread Moto
Hi Mark, Yes, I meant widgets for home screen... That's bad news for me I guess... :( The only animation I got working barely was marquee text. lol... I wonder if there are plans to expand this feature... Animations would be great! :( or even better custom components... -Moto On Sep 27, 2

[android-developers] All developers check your transaction fees! They are charging 92% on some sales!

2009-10-02 Thread Moto
: http://www.google.com/support/forum/p/checkout-merchants/thread?tid=211c100988ee513ehl=en Thanks, -Moto! --~--~-~--~~~---~--~~ 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: All developers check your transaction fees! They are charging 92% on some sales!

2009-10-02 Thread Moto
for these extra fees. All seems to be ok now :-) On Oct 2, 10:00 am, Streets Of Boston flyingdutc...@gmail.com wrote: Yep, I just checked my check-out account and it happened to me too a few times as well. On Oct 2, 9:56 am, Moto medicalsou...@gmail.com wrote: First sorry about

[android-developers] Best way to drawing custom Bitmaps?

2009-10-05 Thread Moto
recommended about this topic? Thanks! -Moto --~--~-~--~~~---~--~~ 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

[android-developers] Android 1.6 New OpenCore?

2009-10-08 Thread Moto
in the decoder Could someone explain to me how this affects us the developers? Does this mean now we can play other media types? What in reality is new to us on Android 1.6 in regards to OpenCore? Thanks for any information on this! -Moto

[android-developers] Re: Android 1.6 New OpenCore?

2009-10-11 Thread Moto
Well I guess I found one difference: MediaPlayer fails to report an error when my online server times out after 3 times... Tested using 1.5 and after 3 times it reports an error... Man this really sucks... No wonder I had many users complaining about buffering taking forever! Anyone see any

[android-developers] Re: ListView/Adapter Crash in 1.6 only: illegalStateException. 1.6 bug?

2009-10-12 Thread Moto
Same issue here! Thanks for the information! -Moto! On Oct 11, 3:11 pm, ccfrazier2 georgefraz...@yahoo.com wrote: Romain, Fantastic, thanks for the help! I've had customers contact me over the months about force closes that I can never get to the bottom of. This likely has fixed

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Moto
Wait with android 1.6 now you can stream progressively? If yes than can we also stream AAC+ content? On Oct 20, 6:58 pm, Marco Nelissen marc...@android.com wrote: On Tue, Oct 20, 2009 at 12:08 PM, sirdan sirda...@gmail.com wrote: In 1.6 I do the following to stream an mp3 shoutcast stream:

[android-developers] Mutex issues.. :(

2009-10-20 Thread Moto
() function... How can I do this? I can't think of the name for this type of mutex scenarios... Thanks in advance.. -Moto --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Re: MediaPlayer and 1.5 vs 1.6

2009-10-20 Thread Moto
1.0, for some specific media formats. progressive streaming is not the same as shoutcast streaming though. On Tue, Oct 20, 2009 at 4:13 PM, Moto medicalsou...@gmail.com wrote: Wait with android 1.6 now you can stream progressively?  If yes than can we also stream AAC+ content? On Oct 20, 6

[android-developers] Re: ListView with Streaming Content

2009-10-26 Thread Moto
I recommend using the AsycTask abstract class declared inside your custom ListAdapter... That made my life so much easier when trying to load content progressively on request and updating the UI content at the same time... On Oct 25, 11:20 am, Miguel Paraz mpa...@gmail.com wrote: Hi, On Oct

[android-developers] Re: Market Download Stats

2009-10-26 Thread Moto
I agree, Basically as of now the Ads I put on my application gives me better statistics than Google... *Stared! On Oct 26, 12:40 pm, Smelly Eddie ollit...@gmail.com wrote: I know Google is quite diligent when it comes to Data Warehousing. Beyond the simple 'Active Installs' and 'Total

[android-developers] How to create/design downloadable skins packets for an application?

2009-10-26 Thread Moto
? Thanks in advance! -Moto --~--~-~--~~~---~--~~ 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: How to create/design downloadable skins packets for an application?

2009-10-26 Thread Moto
I essentially need a lead just to get started... anyone? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: How to create/design downloadable skins packets for an application?

2009-10-27 Thread Moto
I bump once more see if I can get an experts comment on this... On Oct 26, 4:08 pm, Moto medicalsou...@gmail.com wrote: I essentially need a lead just to get started... anyone? --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] How to read USB state?

2009-10-27 Thread Moto
Is it possible to know when the user unplugs a charger or headsets from the device so I can trigger something... Thanks, -Moto --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: How to create/design downloadable skins packets for an application?

2009-10-27 Thread Moto
Thanks for the help Vovkab! I will start playing around with what you've got see were it leads me... -Moto On Oct 27, 11:34 am, vovkab vov...@gmail.com wrote: [In Theme package] 1. set action for activity, for example: my.package.theme 2. add all files you need for this theme [In main app

[android-developers] Re: NEEDED: Apps to feature on Sprint Microsite

2009-10-30 Thread Moto
Guys this is true... I got contacted by them via email not through this forum... So its legit... -Jona On Oct 30, 11:04 am, niko20 nikolatesl...@yahoo.com wrote: See I think this is starting to prove my point. I sent an email to Quentin. Didn't hear anything back for over 3 days. So I

[android-developers] Re: Motorola DROID emulator skin now available for Android 2.0 SDK!

2009-11-01 Thread Moto
The skin is not good at all... Seems like you just replaced the skin with half chopped Droid phone picture... You should look into matching the skin with the phone so that you can see the whole phone... modify I'm guessing layout file? -Moto On Nov 1, 12:23 pm, Tea Vui Huang tvhuangs

[android-developers] Handling different screen densities vs. app installed size?

2009-11-01 Thread Moto
My concern supporting different screen sizes, in this case with the new DROID phone. So my question, when installing my application on a G1 phone, would it ignore all hdpi qualifier folders? I ask this because I'm afraid that my application will grow in size when installed containing many

[android-developers] Broken Emulator after new update?

2009-11-02 Thread Moto
very frustrated! Could someone help me out? Thanks! -Moto -- 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

[android-developers] Re: Broken Emulator after new update?

2009-11-03 Thread Moto
I can actually see that I changed to GSM Speed on the phone but the actual speed is not set on the emulator :( Anyone help? On Nov 2, 9:40 pm, Moto medicalsou...@gmail.com wrote: I've tried the following using an emulator with the 2.0 and 1.6 target and still same results! I'm currently

[android-developers] Using MediaPlayer best practices?

2009-11-03 Thread Moto
better? reuse or renew? Note: This is for using as a music player so one audio be present at one given time... Thank! -Moto! -- 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

[android-developers] Re: Using MediaPlayer best practices?

2009-11-04 Thread Moto
it doesn't have enough data... I want to know when that happens and there is no information for that... Any ideas on this part? Thanks, -Moto On Nov 4, 3:34 am, Alexey Krasnoriadtsev ale...@agilefusion.com wrote: Preparing a mediaPlayer is the most expensive operation. calling stop() or pause

[android-developers] Re: Audio Playback while Recording... ------- attemp playback while recording, cheat it! ----- error

2009-11-04 Thread Moto
Can you just do the following? byte []buf = new byte[1024]; int read = 0; ar = new AudioRecord(); at = new AudioTrack(); do { //Read from mic read = ar.read(buf); //Send to speaker at.write(buf,0,read); } while(...); -Moto On Oct 22, 5:00 am, Vishal vishal.andr...@gmail.com wrote: Thanks

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-07 Thread Moto
Sounds like a hackable idea... But maybe it will be just what I use... But what I'm mostly bother by is that the OnUpdate() always returns old version = 1 and new version = 2 I would assume after I do the update this old version return a 2! :( I still believe that there has to be a way that it

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-07 Thread Moto
Anyone help? I really need to get a release out and this is what's holding me down :( Thanks! On Nov 7, 4:05 pm, Moto medicalsou...@gmail.com wrote: Sounds like a hackable idea...  But maybe it will be just what I use...  But what I'm mostly bother by is that the OnUpdate() always

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-08 Thread Moto
No one had to do a database update? On Nov 7, 11:50 pm, Moto medicalsou...@gmail.com wrote: Anyone help?  I really need to get a release out and this is what's holding me down :( Thanks! On Nov 7, 4:05 pm, Moto medicalsou...@gmail.com wrote: Sounds like a hackable idea...  But maybe

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-08 Thread Moto
Great!! Thanks guys I really appreciate this! This links are exactly what I needed! Moto! :) On Nov 8, 2:32 pm, Dianne Hackborn hack...@android.com wrote: Here's another example, the system settings provider: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;...http

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-09 Thread Moto
that is not getting updated... : ( Thanks! -Moto! On Nov 8, 5:08 pm, Moto medicalsou...@gmail.com wrote: Great!! Thanks guys I really appreciate this! This links are exactly what I needed! Moto! :) On Nov 8, 2:32 pm, Dianne Hackborn hack...@android.com wrote: Here's another example, the system

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-09 Thread Moto
inside the code and re-run the app 3. OnUpdate() should be called with old=1 and new=2 [should happen only once ever] Why would onUpdate be called? What makes this get triggered? Sorry for not understanding here what's happening... :( -Moto On Nov 9, 9:15 pm, Mark Murphy mmur...@commonsware.com

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-09 Thread Moto
mmur...@commonsware.com wrote: Moto wrote: Why would onUpdate be called? What makes this get triggered? SQLiteOpenHelper calls onUpdate(). You can take a look at the source for it -- it's only ~200 lines: http://bit.ly/sqliteopenhelper -- Mark Murphy (a Commons Guy)http://commonsware.com

[android-developers] Re: SQLite OnUpdate() Help!?

2009-11-09 Thread Moto
one time to open the database is a good idea... :P Mark thanks for your help! I really was going to loose it! -Moto On Nov 9, 10:32 pm, Moto medicalsou...@gmail.com wrote: I truly puzzled by this... The source file helped but here is what's weird: When calling db.getWritableDatabase

[android-developers] Android developer site should provice current Android phones info...

2009-11-19 Thread Moto
code -Moto -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] Re: opencore/progressive download : how does it work ?

2009-11-22 Thread Moto
Range in http means start giving me the video data but start from x offset... Since the MediaPlayer already has this data downloaded up to x... -Moto On Nov 20, 12:52 pm, sbw.android sbw.andr...@gmail.com wrote: hi, when a video is played over http (progressivedownload), in some cases

  1   2   3   4   >