[android-developers] Re: Best solution for touchable Toast-like notification for plugin library

2014-01-23 Thread Glenn Powell
I'm working too in a plugin architecture for one of my apps: http://www.youtube.com/watch?v=Xu8Z_3TaWuE Hope this helps Cheers, José https://play.google.com/store/apps/developer?id=Jos%C3%A9+Gonz%C3%A1lez+D%27Amico El viernes, 17 de enero de 2014 23:44:39 UTC-3, Glenn Powell escribió

[android-developers] Best solution for touchable Toast-like notification for plugin library

2014-01-17 Thread Glenn Powell
We are building a plugin library, which will be integrated into third-party applications. It requires the ability to show Toast-like notifications, which when tapped, will open our fullscreen widget Dialog. From my research it appears that Toasts were designed to explicitly ignore any touch

[android-developers] Re: How to open or register a new file extension in Android?

2013-01-20 Thread Glenn
So if you follow this thread carefully, you see that this is all badly broken. You cannot register an app for a VIEW or SEND action only on a specific suffix unless you also give its specific MIME type, and then only for mime types known in the built-in Android registry. I've done all the

[android-developers] Problem with get/setPixels.

2012-06-28 Thread Glenn Edberg
Hey folks! I'm trying to write a custom Image class for my OpenGL ES 1.0 framework, to make it easy cheesy I want to be able to load bitmaps even though they aren't in the power of two and generate GL friendly bitmaps during the loading and initializing process. I have written a method that

[android-developers] Google Earth plugin on Android

2012-02-16 Thread Glenn
Now that Chrome for Android is released, any hope for a Google Earth plugin for either Chrome or Android browsers? Please, no silly responses like what's wrong with standalone GE (clearly you have no concept of cool GE mashups like this: http://sharemytrail.com ) or you can't make a plugin in an

[android-developers] Help with AlertDialog Needed

2012-01-13 Thread Glenn
(); Thanks in advance and hope someone might shed some light on this for me. Cheers. Glenn Aging Cobol Programmer Very New to Android -- 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: Help with AlertDialog Needed

2012-01-13 Thread Glenn
Hi TreKing, Thanks for your reply. Cheers. Glenn On Jan 14, 1:17 am, TreKing treking...@gmail.com wrote: On Fri, Jan 13, 2012 at 4:16 AM, Glenn glennark...@gmail.com wrote: How can I get the name? Use the integer to index into the very list you passed to the AlertDialog to begin

[android-developers] Setting textColor in strings.xml file

2012-01-04 Thread Glenn
Probably a stupid question from a newbie but here goes... Can I set a color for text in the strings.xml file to be used in the layout xml file? ie... set color in strings.xml string name=goldText#ffdf38/string then reference in the layout file main.xml TextView

[android-developers] Re: Android 3.1 is too slow

2011-06-11 Thread Glenn Maynard
Saying use a real device isn't very helpful or realistic. Android apps need to be tested in many screen configurations and in every supported SDK level. If the cost of entry to Android development is thousands of dollars of test devices, that's just too high. -- You received this message

[android-developers] META-INF files

2011-05-30 Thread Glenn Maynard
Many libraries require control files under META-INF. However, at least when building with Eclipse, files in META-INF aren't included in the APK. All other paths work; just files under META-INF are ignored. In fact, it seems that if a path has META-INF as a component anywhere inside it, it's

[android-developers] SQLite database locale, locking, and version

2010-03-26 Thread Glenn Doten
In some books and online I see these method calls being made after a database is created: db.setLocale(Locale.getDefault()); db.setLockingEnabled(true); db.setVersion(DB_VERSION); Why is this done? As far as I can tell, after creating a new database, the system adds a table named

[android-developers] Re: getRotationMatrix and getOrientation

2010-02-18 Thread Tze Yun, Glenn Poh
Thanks! :) Will give tat a try :) On Feb 16, 7:38 pm, Андрей Бабинов andrey.babi...@gmail.com wrote: How I know, better to transform the scene, not a camera. It would be faster. And you can use rotationMatrix directly for scene transformation. 2010/2/15 Tze Yun, Glenn Poh pohtze...@gmail.com

[android-developers] getRotationMatrix and getOrientation

2010-02-15 Thread Tze Yun, Glenn Poh
I'm using getRotationMatrix and getOrientation to change the camera's view (eyeX, eyeY and eyeZ for the gluLookAt method) on the 3D objects generated depending on the movement of the user but I'm not getting any results. All I'm getting is a blank screen. Which part of the process am I doing it

[android-developers] Android WebView - handling orientation changes

2009-06-16 Thread Glenn
Hi, Just started working with the webview. The issue is performance following rotation. The WebView has to reload the page, which can be a bit tedious. What's the best of of handling an orientation change without reloading the page from source each time? Thanks Glenn