Tap Outside Listener for Dialog
Hi all, I was wondering if anyone knew of an event listener that receives "tap outside" events, that is, taps that happen outside the widget's physical boundaries, and could this listener be assigned to a dialog box (or for that matter, any visual window). Here's what the code MIGHT look like to construct a Dialog with this functionality:
Informacja: 2009-04-30
Czytaj: Tap Outside Listener for Dialog
Re: [android-developers] Re: MediaPlayer State
In this context: process state is "meaningful" to me if its exposed in a form that I can reason about competently. I would find it easier to reason about the state of the media player as exposed by the type of API I described above than that exposed by the API at present. This is obviously a 'self-centric' definition - I would struggle to define
Informacja: 2009-04-30
Czytaj: Re: [android-developers] Re: MediaPlayer State
How to run android widget example in emulator
Hi, Can you please tell me how can I deploy the widget example to my emulator? [link] Thank you.
Informacja: 2009-04-30
Czytaj: How to run android widget example in emulator
Instrumentation for Dialog's and alike
I've seen a few posts with no answer. Consider this scenario: I use Android's InstrumentationTestCase to run functional testing through a complex application with many activities and services running. Most of it works well, but if I invoke a menu item through the instrumentation that creates a dialog - the only way I can access that
Informacja: 2009-04-30
Czytaj: Instrumentation for Dialog's and alike
Re: [android-developers] Cupcake's bug ? Caused by: android.content.res.Resources
So the root cause is back in your XML code: Caused by: android.content.res.Resources $NotFoundException: Resource is not a Drawable (color or path): TypedValue{t=0x2/d=0x1010059 a=-1} Are you setting an android:background or android:src to something that isn't a @drawable? j --
Informacja: 2009-04-30
Czytaj: Re: [android-developers] Cupcake's bug ? Caused by: android.content.res.Resources
Re: [android-developers] Is there a way to define default attributes of a Widget as applicable the application in context
So with AppWidgets you can't rely on the android:theme, since it is applied to an entire window, and home screens typically use one theme for their entire window. One way of implementing different styles is to have multiple layouts, internally store the user's preference, and build each new RemoteViews() using the desired layout.
Informacja: 2009-04-30
Czytaj: Re: [android-developers] Is there a way to define default attributes of a Widget as applicable the application in context
Re: [android-developers] NEW Gesture Recognition Application!
> check out our blog and demonstration video and comment to let us know > what you think. I don't like having to click on a button (Call, SMS etc) after drawing the gesture. Instead, I'd like to see the app doing that by itself depending on where the gesture was defined. Apart from that, where and when can I get it!? ;)
Informacja: 2009-04-30
Czytaj: Re: [android-developers] NEW Gesture Recognition Application!
paint individual button - please help!
hi, i know i can set a drawable as background to a button. but HOW can i for example: create/paint a small image in the size of a button and set this as the backgroundimage of that button? please help. just some lines how to create an image *for example just two different dots* and how to set this image as background for a button.
Informacja: 2009-04-30
Czytaj: paint individual button - please help!
Re: [android-developers] Tap Outside Listener for Dialog
So Theme.Dialog Activities still receive onTouchEvent() calls, even outside of their floating window area. If you can grab the exact window size, you could do the math to figure out if touches are outside the window. j -- Jeff Sharkey jshar...@google.com
Informacja: 2009-04-30
Czytaj: Re: [android-developers] Tap Outside Listener for Dialog
Re: [android-developers] How to run android widget example in emulator
svn checkout the source code from Google Code, import as an Eclipse project, and launch. j On Thu, Apr 30, 2009 at 11:56 AM, Daniel Dreiberg -- Jeff Sharkey jshar...@google.com
Informacja: 2009-04-30
Czytaj: Re: [android-developers] How to run android widget example in emulator
SlidingDrawer issue #1?
when adding a slidingDrawer object to my application, i got this error when trying to display it on the main.xml layout view i used that view to create it as the bottommost component, and immediatly got this message in the console window and the layout stopped showing. here is the exception: java.lang.IllegalArgumentExcep tion: The handle attribute is required
Informacja: 2009-04-30
Czytaj: SlidingDrawer issue #1?
Re: [android-developers] SlidingDoor issue #1?
you will need to define the handle as well. Take a look at the launcher code for example. Dan
Informacja: 2009-04-30
Czytaj: Re: [android-developers] SlidingDoor issue #1?
Re: [android-developers] SlidingDrawer issue #1?
Do what the exception says: "java.lang.IllegalArgumentExce ption: The handle attribute is required and must refer to a valid child." You need to define the widget to use as the handle of the drawer. -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time
Informacja: 2009-04-30
Czytaj: Re: [android-developers] SlidingDrawer issue #1?
camCorder not working well in emulator
hi all, just installed myself a new AVD and set the camera to true, however the camcorder is very unresponsive and seems like it's not working...
Informacja: 2009-04-30
Czytaj: camCorder not working well in emulator
Re: [android-developers] Re: SlidingDrawer issue #1?
It *needs* a handle. It's not a bug, it's a requirement to make the widget work. -- Romain Guy Android framework engineer romain...@android.com Note: please don't send private questions to me, as I don't have time to provide private support. All such questions should be posted on public forums, where I and others can see and answer them
Informacja: 2009-04-30
Czytaj: Re: [android-developers] Re: SlidingDrawer issue #1?
Android Market app suspended. What do I do?
I received notice that my application was suspended yesterday around lunch. I've contacted support via email and the publisher support form with no answer as of yet. What can I do to resolve this issue? The violation was that after paid app support hit the UK, a UK company (non-software) with the same name as my app yelled at Google. The
Informacja: 2009-04-30
Czytaj: Android Market app suspended. What do I do?
How to Snap a picture of a Layouts contents?
Hi, I need to somehow get a drawable of the contents of a Layout, once I get that "drawable" I want to set it as a background on an empty layout.... How can I go about doing this? Thanks! Moto!
Informacja: 2009-04-30
Czytaj: How to Snap a picture of a Layouts contents?
Re: [android-developers] Re: Date in sms
Thanks.
Informacja: 2009-04-30
Czytaj: Re: [android-developers] Re: Date in sms
Re: SlidingDrawer issue #1?
okay, i might be missing something, the reason i think that this is a bug is that if you use the supplied tool, and cannot avoid getting an exception - it's a bug... i don't see any way around it - the way to create this widget is: a) create widget b) get exception c) fix error d) populate it with the values you want
Informacja: 2009-04-30
Czytaj: Re: SlidingDrawer issue #1?
Posts about Mobile Internet as of April 30, 2009
Marketing Week talk about 3
Informacja: 2009-04-30
Czytaj: Posts about Mobile Internet as of April 30, 2009
Want To Avoid Swine Flu? There
Yesterday, we talked a bit about how some companies are clearly trying to capitalize on the Swine Flu craze that is sweeping the nation. Naturally, someone just had to make an iPhone app. And the winner is IntuApps , which has Swine Flu Tracker, waiting for approval from Apple before it
Informacja: 2009-04-30
Czytaj: Want To Avoid Swine Flu? There
Engadget Mobile Podcast 018 - 04.30.2009
Filed under: Features , Podcasts A one-week hiatus means we have a ton to talk about again this week, so we move at a pretty aggressive clip. There's lots of Android in this week's episode -- but we touch on just about every subject under the sun, so hop in. Can you keep up? Hosts: Chris Ziegler and Sean Cooper Producer: Trent Wolbe Music: Solvent - Devices and Strategies ( Ghostly International ) 00:01:26 - T-Mobile Sidekick LX officially announced all over again 00:0
Informacja: 2009-04-30
Czytaj: Engadget Mobile Podcast 018 - 04.30.2009
iPhone - Love is above all else the gift
Love is, above all else, the gift of oneself. Author: Jean Anouilh Yesterday I saw a kid whing about not getting an iphone . In my head I wanna smack that kid. Kids who are 14 and ynger dont deserve it. Cont CN: Apple's iPhone wins second J.D. Power award http://tinyurl.com/cjztqv iPhone Price reduced App: TouchTouchPop New Price: US$0.99 Reduction: US$ 1 http://tinyurl.com/c6ve7y A not-so-wise homeless man once said to me, "Give me some money. I know you have it;
Informacja: 2009-04-30
Czytaj: iPhone - Love is above all else the gift
Games for iPhone and iPod Touch - Siberian Strike
On the iPhone -iPod Touch menu today is Siberian Strike , a shmup from the Gameloft kitchen. Enjoy the fine 1940s flavor of gunfire showers and the usual side order of suicidal planes. If you have the appetite for dodging and taking on whole enemy fleets all by yourself, then by all means, indulge. Nutritional information: Fast-paced action, intense combat and 4 difficulty levels to keep you constantly challenged Unique gameplay mixing shooting and insane piloting missio
Informacja: 2009-04-30
Czytaj: Games for iPhone and iPod Touch - Siberian Strike
Quick App: GriP
We
Informacja: 2009-04-30
Czytaj: Quick App: GriP
iPhone Sweeps Consumer Smartphone Ratings
TechCrunch submits: By MG Siegler The latest 2009 JD Power Consumer Smartphone Satisfaction Study numbers are in . And the winner is
Informacja: 2009-04-30
Czytaj: iPhone Sweeps Consumer Smartphone Ratings
JD Power: Apple iPhone Tops in Consumer Smartphone Satisfaction!
JD Power, and their mysterious associates, has just released their 2009 Consumer Smartphone Satisfaction Survey results. The winner? Apple ( NSDQ: AAPL ) and their iPhone/iPhone 3G. No contest, game over, thanks for playing. The iPhone recently topped JD Power
Informacja: 2009-04-30
Czytaj: JD Power: Apple iPhone Tops in Consumer Smartphone Satisfaction!
Fun with Math
A coworker of mine is creating an iPhone app, and whenever he encounters tricky math, pulls me in, as he realizes I have fun with it. His problem was: given two points on a circle, find the shortest number of degrees between them So given points at 4° and 20°, the result should be 16°. Seems easy enough, except a few fun scenarios. 356° and 4° results in 8°, and 360° and 0° are the same.
Informacja: 2009-04-30
Czytaj: Fun with Math
Monkey Around With Primate Plunge
Hand-drawn backgrounds provide a beautiful backdrop for a jaunty little top-hat wearing wild thing, in Aelius
Informacja: 2009-04-30
Czytaj: Monkey Around With Primate Plunge
iPhone - I love being a writer What I can't
I love being a writer. What I can't stand is the paperwork. Author: Peter De Vries @JeffVentura iPhone all the way, baybee! Although I was a Moto Q and a Blackberry user up until about a year or so ago. justinsmith: New Post: Flower Garden for the iPhone - Virtual Nature at its Finest http://tinyurl.com/cfu69v http://ff.im/-2tQfo D@mateoraneo no, I just texted u back on my iPhone . Thought that would work. @ModelMandyLynn the video wont open with my iphone str
Informacja: 2009-04-30
Czytaj: iPhone - I love being a writer What I can't