[android-developers] Re: Grey buttons when adding actions to a notification in Jelly Bean

2012-08-27 Thread Christer Nordvik
Seems this was a "bug" or a feature when targeting SDK level 8. Ah well, I guess we have to change or target SDK and rewrite to actionbar soon anyway. kl. 23:38:07 UTC+2 mandag 27. august 2012 skrev Christer Nordvik følgende: > > I have a strange issue where I've star

[android-developers] Grey buttons when adding actions to a notification in Jelly Bean

2012-08-27 Thread Christer Nordvik
I have a strange issue where I've started using the support library (v4) to extend our notifications to have actions inside of them. The problem is that the actions are displayed as large grey buttons and the text is white so it's impossible to see it. All the samples I have seen have the nice

Re: [android-developers] Re: Directly accessing the e-mail app.

2012-04-13 Thread Christer Nordvik
Try this magic code: Intent i = *new* Intent(android.content.Intent.ACTION_SEND); //i.setType("text/plain"); //use this line for testing in the emulator i.setType("message/rfc822") ; // use from live device* i.putExtra(Intent.EXTRA_SUBJECT, "Subject of this great email"); i.putExtra(Intent.EXTR

[android-developers] Re: App taken down by fake DMCA, no response from Google

2011-12-01 Thread Christer Nordvik
> You're obviously new around here. That made my day. Thanks. I think our app was nr 48 in the appstore when it opened so not that new :-) I've been to Google's offices so I know (contrary to common belief) that there are actually human beings working with the Android Market that can be spoken to

[android-developers] App taken down by fake DMCA, no response from Google

2011-12-01 Thread Christer Nordvik
Our app FotMob, https://market.android.com/details?id=com.mobilefootie.wc2010, was taken down by a fake DMCA and has been down for 4 days. We have confirmation from the ones who apparently sent the DCMA that they never sent it and have forwarded this information to Google 2 days ago with no res

[android-developers] Svar: Re: == Populated MatrixCursor returned to the Global Search shows wrong results ==

2011-07-20 Thread Christer Nordvik
Thanks for this, I spent hours wasting my time on the docs with an Android 2.3 device. Added the columns you specified and everything works great. Hope someone can update the docs someday... it's been a while since Android 2.2 was released... -Christer -- You received this message because y

[android-developers] Animate Dialogfragment

2011-06-11 Thread Christer Nordvik
Is it possible to animate a DialogFragment when it appears? I want a flip animation (from zero width and then "flip" into view, but nothing happens when I try to animate it. I asked the question here also (no answers): http://stackoverflow.com/questions/6129567/is-it-possible-to-animate-a-dialogfr

[android-developers] Re: Actionbar.DISPLAY_HOME_AS_UP causes activity to not call destroy, is this by design?

2011-06-05 Thread Christer Nordvik
uot;, > so I just finish() the current activity to make it happen. > > If you are using startActivity() with FLAG_ACTIVITY_REORDER_TO_FRONT > to go "home", that's not going to immediately destroy your original > activity, any more than any other startActivity() call

[android-developers] Actionbar.DISPLAY_HOME_AS_UP causes activity to not call destroy, is this by design?

2011-06-04 Thread Christer Nordvik
I have two activities. 1. Home 2. Details In the details activity I set: ActionBar actionBar = this.getActionBar(); actionBar.setDisplayHomeAsUpEnabled(true); and this causes the top left icon to act as a home button. But what I hadn't anticipated was that the details activity isn't destroyed

[android-developers] Re: Amazon Appmarket is now open!

2011-03-23 Thread Christer Nordvik
How do all of you take into account: - C2DM (push messaging only available on Android Market) - House-ads via AdMob that links to apps in the Android Market - In-app purchasing that is coming soon on the Android Market - Links to additional content in Android Market from your app Are you all havi

[android-developers] Re: How is your sales model changing with the introduction of Android 3.0 and tablets, or is it?

2011-03-18 Thread Christer Nordvik
I am thinking about #1 since you can always slap on a HD at the end like "Angry App HD" and charge the users more. At least that's the standard practice on iPad. But then you have to have some extra features (or just better graphics) on the HD version of your app. My main problem is that the Xoom

[android-developers] Re: Renderscript, YouTube example

2011-03-01 Thread Christer Nordvik
> The 3D carousel should be open sourced with the platform. That's amazing news. I had hoped the source-code would be out already since the Xoom has launched, but I guess it will be out in 1-2 weeks? If the carousel is as good as it looks then it will work wonders for a lot of apps :-) -Christer

[android-developers] In-app purchase, how to test it on Android 2.3.3?

2011-02-27 Thread Christer Nordvik
I have a Nexus One with Android 2.3.3 and Market version 2.3.2. This method always returns false: @Override public void onBillingSupported(boolean supported) How are we supposed to test this then? This code is taken from the sample app so should be correct... -Christer -- You re

[android-developers] Re: Sending emails from the android app

2011-02-23 Thread Christer Nordvik
http://groups.google.com/group/android-developers/browse_frm/thread/88bb36c676e3217b -Christer On 21 Feb, 12:37, ronil vanza wrote: > This is the code that I am using to send emails, however it says 'No > applications can send the email'. I have no idea what that means and > would really like so

[android-developers] Renderscript, YouTube example

2011-02-23 Thread Christer Nordvik
I noticed that the Renderscript examples (http://developer.android.com/ resources/samples/Renderscript/index.html) just showed very basic usage of Renderscript. Would it be possible to have the source code for the YouTube Renderscript screen where the videos are displayed? Or at least a small arti

[android-developers] Re: Renderscript documentation

2011-02-17 Thread Christer Nordvik
Any news of docs for Renderscript? Since the Xoom is soon launching it would be nice to build some apps using Renderscript for this device. And it would be great if the Renderscript code used in the YouTube app could be shared with the developers :-) -Christer On 28 Jan, 20:18, Xavier Ducrohet w