[android-developers] how to enable screen compatability mode in android 11

2011-09-29 Thread siliconeagle
I have an app that is quite old and still has to support 1.5 (3) devices. For some reason the screen computability mode has stopped running and i can figure out why. It did work fine on honeycomb devices. The result i am getting is that that the app is zoomed (i.e. all elements are oversized)

[android-developers] Re: download declined for app on market

2011-09-04 Thread siliconeagle
https://market.android.com/details?id=org.my_pod.mypodunlockpaid hopefully that works. best rob On Sep 4, 12:38 pm, Appaholics raghavs...@appaholics.in wrote: Rich, I think Christopher meant that the Android support is not very good and that therefore the link doesn't work. On Sun, Sep 4,

[android-developers] download declined for app on market

2011-09-03 Thread siliconeagle
I have a paid app on market MyPOD Unlock Key (https:// market.android.com/details?id=org.my_pod.mypodunlockpaid) The app downloads fine on pre-honeycomb devices, but some people get Download Declined after they have paid for the app. The app definitely runs fine on honeycomb, and there are no

[android-developers] Re: MediaPlayer Player Question

2011-09-03 Thread siliconeagle
1. you would need to use AudioTrack to control the buffer size 2. there always has to be some buffering as the media must be decoded before playing.. 3. yes you can http stream just give the url to setDataSource 4. dont know On Sep 3, 5:28 pm, dani maoz maoz.d...@gmail.com wrote: Hi I have a

[android-developers] Re: Widgets in SD installed application

2011-03-21 Thread siliconeagle
this has been disallowd as the sd card can be unmounted. http://code.google.com/p/android/issues/detail?id=11283 On Mar 21, 9:27 am, Joan Pujol joanpu...@gmail.com wrote: Did widgets work in a SD installed application? According Android javadoc it seems that can work: App Widgets Your A

[android-developers] org.xmlpull.v1.XmlPullParserException: Map value without name attribute: boolean

2011-03-20 Thread siliconeagle
I am trying to figure out the cause of this error it occurs on startup when i try to get the shared preferences for the app. the code is just: settings = this.getSharedPreferences(Globals.PREFS_NAME, 0) Seems like a corruption, but the bug is in the app as i have installed it on multiple devices

[android-developers] Re: org.xmlpull.v1.XmlPullParserException: Map value without name attribute: boolean

2011-03-20 Thread siliconeagle
like you expect. On Mar 20, 8:17 am, siliconeagle rrmu...@gmail.com wrote: I am trying to figure out the cause of this error it occurs on startup when i try to get the shared preferences for the app. the code is just: settings = this.getSharedPreferences(Globals.PREFS_NAME, 0

[android-developers] org.xmlpull.v1.XmlPullParserException: Map value without name attribute: boolean

2011-03-19 Thread siliconeagle
I am getting a really strange error all of a sudden when getting the shared preferences in my app. I have completely removed the app and all data and it just recurs after install - nothing saves in shared preferences after the app is killed, the preferences save in memory but everything is reset

[android-developers] forcing a view to measure off screen

2010-11-09 Thread siliconeagle
I have a custom view i am writing for my drawing app - but the first time i set the drawing into it i need to get the dimension for the view (using getMeasuredWidth() getMeasuredHeight()). But until the view display these return 0. I have tried calling: requestLayout() invalidate()

[android-developers] drawBitmap differences between 2.1 and 2.2

2010-11-08 Thread siliconeagle
I am working on a drawing program that draws to a bitmap in memory then i draw the relevant portion to the view canvas depending on pan and zoom settings So i have run into a snag where if the src rect is outside to bounds of the canvas in 2.2 the area outside the bounds is not drawn but in 2.1

[android-developers] reading ttf fonts

2010-10-21 Thread siliconeagle
I am writing a vector based drawing app and wanted to be able to get the vectorised (points, triangles, lines, etc) information for fonts - apparently this is in most ttf files. does anyone know how to read ttf files or any libraries that do it? Or is there a way to get the font information from

[android-developers] Re: widget with custom bitmaps

2010-10-04 Thread siliconeagle
on the SD card or in memory). rob munro On Oct 3, 10:27 pm, Kostya Vasilyev kmans...@gmail.com wrote: Not sure what you mean, could you clarify? -- Kostya Vasilyev --http://kmansoft.wordpress.com 01.10.2010 20:04 пользователь siliconeagle rrmu...@gmail.com написал: is it possible

[android-developers] widget with custom bitmaps

2010-10-01 Thread siliconeagle
I am writing a clock widget that uses customised bitmaps (so the widget loads the bitmap from the sdcard) Just have a couple of questions regarding how updates work: 1. if i want to display seconds on the clock widget will the widget load the bitmaps off the disk every second or can they be

[android-developers] Re: widget with custom bitmaps

2010-10-01 Thread siliconeagle
://kmansoft.wordpress.com 01.10.2010 16:21 пользователь siliconeagle rrmu...@gmail.com написал: I am writing a clock widget that uses customised bitmaps (so the widget loads the bitmap from the sdcard) Just have a couple of questions regarding how updates work: 1. if i want to display seconds on the clock widget

[android-developers] intent to launch flash swf files

2010-07-05 Thread siliconeagle
Hi, I am working on a podcasat player and am looking for a sutable intent to launch and play a downloaded SWF file. I am on 2.2 and have adobe flash player installed. The things i have tried are: This launces the HTC flash player to select a file: ComponentName toLaunch = new

[android-developers] Re: Can't run or debug my app on Eclipse

2009-11-17 Thread siliconeagle
this is happening for me as well after upgrading to the API 2.0 !MESSAGE An internal error occurred during: Launching MyPodTest11. !STACK 0 java.lang.NullPointerException at com.android.ide.eclipse.adt.internal.launch.AndroidLaunchController.launch (Unknown Source) at

[android-developers] Re: Can't run or debug my app on Eclipse

2009-11-17 Thread siliconeagle
the problem was fixed by changing the usb device config for the phone http://groups.google.com/group/android-developers/browse_thread/thread/3515cd8721016520/6077e89d066a4bf7?lnk=raot regards rob On Nov 17, 4:37 pm, siliconeagle rrmu...@gmail.com wrote: this is happening for me as well after

[android-developers] Re: Can't run or debug my app on Eclipse

2009-11-17 Thread siliconeagle
The problem was fixed by changing the usb device config after a ubuntu upgrade http://groups.google.com/group/android-developers/browse_thread/thread/3515cd8721016520/6077e89d066a4bf7?lnk=raot On Nov 17, 4:37 pm, siliconeagle rrmu...@gmail.com wrote: this is happening for me as well after

[android-developers] ring app crash when using telephony manager to listen for calls

2009-10-27 Thread siliconeagle
I have a media player which i want to mute when the user gets a call. I was using the TelephonyManager to listen for calls creating the listener on create and removing it on destroy in my service. like so: public void onCreate() { ... TelephonyManager tm = (TelephonyManager)getSystemService

[android-developers] Marketplace urls

2009-10-18 Thread siliconeagle
Hi, Sorry for the rather obvious post(to some) I've been searching round for 3 hours for how to make a marketplace url to point to my app and i cant find it !! my app is mypod Can anyone point to a link on how the make a link i can use to tell people where to download my appp? regards, rob

[android-developers] LinearLayout update view

2009-09-16 Thread siliconeagle
I have a linearLayout which is focusable, so I can use it with the trackball, when focused i want to change the background to a different drawable - but it looks like the view needs refreshing/redrawing somehow. I know it gets focus as the imageView state changes when i move the trackball.

[android-developers] Re: PVMFFailure when using MediaPlayer for radio streams

2009-09-02 Thread siliconeagle
Also the URl is a http (MP3) stream URL - as opposed tioo other opost where RTSP is being tried. It looks like it should just work. Has anyone else got streaming working via a streaming URL? On Sep 1, 1:24 pm, siliconeagle rrmu...@gmail.com wrote: I am trying to build streaming radio into my

[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-02 Thread siliconeagle
I started learning android about 3 months ago - initially i found it hard as it quite a different but i think i have gotten the swing of it lately and my app is coiming along - it still isn't finished (and i just found another bug last night :( - anyone know if i can post updates?) but it getting

[android-developers] PVMFFailure when using MediaPlayer for radio streams

2009-09-01 Thread siliconeagle
I am trying to build streaming radio into my app, which works fines streaming files over the internet, but when i try to use a shoutcast url in get the error below, which from the soruce code looks liek the mediaPlayer is looking for the duration in the header. Does anyone know if shoutcast urls

[android-developers] Re: Embedded webview crashes on dialog

2009-08-19 Thread siliconeagle
· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Aug 18, 3:18 am, siliconeagle rrmu...@gmail.com wrote: I have an application that uses the webview

[android-developers] Embedded webview crashes on dialog

2009-08-18 Thread siliconeagle
I have an application that uses the webview to load webpages so user can download media off them, but i get a crash when any sort of popup tries to show (eg from a select box or save password dialog) - the error is that for some reason the webview doesnt provide the new dialog with the