[android-developers] Re: 2x/stretched resources in honeycomb

2011-07-16 Thread Alec B. Plumb
, keyboardr keyboa...@gmail.com wrote: /res/drawable-xlarge On Jul 15, 8:27 pm, Alec B. Plumb abp...@gmail.com wrote: With 3.2, honeycomb devices now have the option to have an application Stretch to fill screen. In my opinion, my apps look better in this mode than in the regular zoom mode

[android-developers] 2x/stretched resources in honeycomb

2011-07-15 Thread Alec B. Plumb
for the time being. Is there any way to do it? Alec -- 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

[android-developers] AAPT Fatal Crash - library project enum attributes

2010-08-20 Thread Alec B. Plumb
I spent quite a while troubleshooting this, not helped by the fact that AAPT was just dying silently, but i've narrowed my problem down to the following. When an Android application project in Eclipse uses an Android library project, and that library project declares (e.g. in attr.xml) an attr

[android-developers] Re: Eclipse/Android environment issues

2010-07-23 Thread Alec B. Plumb
If you select Run while you have an XML file (like a layout or strings file) open, then you will get this error. If you did this one a file called layout.xml, for example, you may have also created a file called layout.xml.out which you will need to delete. On Jul 23, 11:33 am, jack.n

[android-developers] Re: ListView - Row Background Animation

2010-06-25 Thread Alec B. Plumb
ListView recycles rows by calling getView(int position, View convertView, ViewGroup parent) in the ListAdapter. The convertView argument can be an existing view that will be moved to the new position. The ListAdapter will usually keep the convertView (instead of creating a new one) and modify it

[android-developers] Re: How to detect is Activity started from Service

2010-06-25 Thread Alec B. Plumb
You can define an Application subclass in your AndroidManifest.xml. Your other components can access the application from Context.getApplication(). You could have your MainActivity register itself with your Application class when it is active and unregister when it is stopped/paused. On Jun 25,

[android-developers] Re: How to detect is Activity started from Service

2010-06-25 Thread Alec B. Plumb
Actually, the better way is probably the following (from http://developer.android.com/guide/topics/fundamentals.html#lcycles): The visible lifetime of an activity happens between a call to onStart() until a corresponding call to onStop(). During this time, the user can see the activity

[android-developers] Selection.moveLeft

2010-04-02 Thread alec hammond
I created my own soft keyboard. one of those keys moves the cursor left and another right. However, In the documentation for selection.moveRight, the arguments are spannable text, and Layout layout. The first argument I understand, but what is it asking for the second argument? A layout? A text

[android-developers] MemoryFile between processes

2009-06-23 Thread Alec
. Is it possible to share data between processes using a MemoryFile? Thanks, Alec --~--~-~--~~~---~--~~ 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

[android-developers] Re: MemoryFile between processes

2009-06-23 Thread Alec
...@android.comwrote: On Mon, Jun 22, 2009 at 1:29 PM, Alec gorje...@gmail.com wrote: Hi, I've been able to send data via shared memory between threads within a process using MemoryFile.  I then tried to send data between a service and an activity in different processes, but the data

[android-developers] Re: Intent to handle files opened in browser ending .droid.txt

2009-05-26 Thread Alec
=* android:pathPattern=.*\\.droid.txt / /intent-filter Alec On May 22, 1:51 am, CaptainFanatic benny.caldw...@gmail.com wrote: I am having trouble with this too. I have tried using a html file with a new mime type for my application: ... head meta http-equiv=Content-Type

[android-developers] Android Browser 1.5 - Save link broken?

2009-05-05 Thread Alec
application? the error is simply that it says unknown for the file name and then Download unsuccessful Anyway to get some useful feedback from the android browser as to the root of the issue? Thanks Alec --~--~-~--~~~---~--~~ You received this message because you

[android-developers] 1.5 SDK export unsigned application - no files inside

2009-05-01 Thread Alec
.png uponelevel.png ./res/layout: engine_addform.xml manualsearch.xml settingstester.xml ..etc... So as you can see ive got no classes, or files that actually do anything! please help! Alec --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: 1.5 SDK export unsigned application - no files inside

2009-05-01 Thread Alec
Thank you Mark I was being a bit silly. The actual issue was the corruption of files transfered onto the sdcard. I worked around it. Thank you for helping me diagnose the issue. Alec On May 1, 12:39 pm, Mark Murphy mmur...@commonsware.com wrote: Alec wrote: Hi all i really need some help

[android-developers] Intent to handle files opened in browser ending .droid.txt

2009-04-18 Thread Alec
/* android:scheme=http android:host=* android:pathPattern=.*\\.droid.txt / /intent-filter /activity Could anyone point out where im going wrong? At the moment the file just opens in the browser. Many thanks Alec

[android-developers] Re: Launch Browser without starting a new Window

2009-03-19 Thread Alec
Hi Did you manage to find a solution? or is this still an issue? Alec On Feb 9, 7:48 pm, mattaku.betsu...@gmail.com mattaku.betsu...@gmail.com wrote: Hello, Let's say I have an app that has a search on Google button. Every time the user choose it, I want to bring up thebrowserand run

[android-developers] Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Alec
can be done about this as it is quite a pain. thanks Alec --~--~-~--~~~---~--~~ 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: Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Alec
As an update i just raised a bug report on the android bug tracker http://code.google.com/p/android/issues/detail?id=2127 On Mar 3, 12:41 pm, Alec alechol...@gmail.com wrote: Hi I noticed recently that i cant download files with square brackets in. For instance i have uploaded two files

[android-developers] Re: Android Browser - Downloading files with square brackets in the name [ ]

2009-03-03 Thread Alec
update any time soon, or do i need to wait for cupcake for the fix? Many thanks Alec On Mar 4, 12:08 am, Jean-Baptiste Queru j...@android.com wrote: Indeed. This was fixed in the source code (it's in the cupcake development tree) and the fix will be in a future release. JBQ On Tue, Mar 3

[android-developers] Re: Waiting for debugger in release version of an application

2009-02-26 Thread Alec
wrote: On Feb 25, 2:20 am, Alec alechol...@gmail.com wrote: Hi i have a strange problem and cant see whats is not working. I have developed an app, and i have been testing it on the phone by debugging it and stepping through in eclipse. This works flawlessly (well it doesnt crash) My

[android-developers] Re: Waiting for debugger in release version of an application

2009-02-26 Thread Alec
the Dev tools externally to unset the global debug application. Thanks for your continued interest in helping me though ^_^ On Feb 26, 9:21 pm, fadden fad...@android.com wrote: On Feb 26, 1:27 am, Alec alechol...@gmail.com wrote: hmm, well im on the 1.0 sdk, but i dont understand what you mean

[android-developers] Re: Waiting for debugger in release version of an application

2009-02-26 Thread Alec
Development.apk and by toggling the settings i can now use my application! Thank you so much for your advice, it helped me get to a solution!! On Feb 26, 9:21 pm, fadden fad...@android.com wrote: On Feb 26, 1:27 am, Alec alechol...@gmail.com wrote: hmm, well im on the 1.0 sdk, but i dont

[android-developers] Waiting for debugger in release version of an application

2009-02-25 Thread Alec
); scan_anything.setOnClickListener(mScanAnything); } Many Thanks Alec --~--~-~--~~~---~--~~ 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] using intents/intent filters and mime types

2009-02-22 Thread Alec
Hi I've been grappling with an issue all day. I am trying to create a program to deal with .torrent files that are clicked on and/or downloaded by the browser. Currently the downloader reports Cannot download. the content being downloaded is not supported on the phone Im fairly sure this is