Re: [android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2013-02-09 Thread Thomas Jakway
I think the point is that there's no way to stop pirates (0% piracy of apps will never happen in this universe)- it's all about finding a balance between user frustration and developer protection. 100% developer protection = forcing users to submit to total background checks & showing up at thei

[android-developers] spinner list

2013-02-09 Thread PM
i have spinner list ,having 4 option i want to select one of them and it should act like button -- -- 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 fro

[android-developers] Hide status bar in Android 2 without removing action bar in Android 4

2013-02-09 Thread limtc
Hi, I have been trying out various ways but with no success. I am doing a full screen painting app for kids. But it can't go full screen without the following line in Manifest.xml: android:theme="@android:style/Theme.NoTitleBar.Fullscreen" But this statement causes a lot of behaviour issues in

Re: [android-developers] Expandable list view.

2013-02-09 Thread TreKing
On Sat, Feb 9, 2013 at 4:47 AM, Sadhna Upadhyay wrote: > i am creating a app in which i have to fetch the data in expandable list > from server and dynamically but i am very new in android can some one help > me. > You need to learn to ask a question people can answer. www.catb.org/esr/faqs/smar

Re: [android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2013-02-09 Thread Anton Kaiser
Yeah your right, my post might have sounded like "just do ad-based free apps", but I never meant to say you shall not have a paid version (that was why I used the word "version"). My key point is that you reduce the users motivation to look for pirated versions if you have a free add supported v

Re: [android-developers] problem getting Google API V1 key

2013-02-09 Thread Mark Murphy
On Sat, Feb 9, 2013 at 6:59 PM, g...@deanblakely.com wrote: > So now I want to get an MD5 fingerprint, so I run the following command > > keytool -list -alias myAlias -keystore DBAPhoneStalker-release-key.keystore > > After entering my password, the keystore program proceeds to give me an SHA > fi

[android-developers] problem getting Google API V1 key

2013-02-09 Thread g...@deanblakely.com
I have an app that uses Google maps API v1 that I'm trying to generate a release version for. I'm having a problem getting the MD5 Fingerprint I need for my google release key. I have a Debug google api v1 key that I got back when I began writing the app. Everything works fine in debug mode

Re: [android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread FiltrSoft
Oh, I gotcha. I see where I'm wrong, instead of creating a collection of Fragments, I should create a collection of id's and do something like this in getItem(): @Override public Fragment getItem(int index) { if (index == 0) return MyList

Re: [android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
The tutorial you link to does what I described: it creates the fragments on demand from getItem() of the adapter. On Sat, Feb 9, 2013 at 5:22 PM, FiltrSoft wrote: > So, should I re-think how I'm setting up my ViewPager? This is the first > time I've implemented one, so I was a little in the dark

Re: [android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread FiltrSoft
So, should I re-think how I'm setting up my ViewPager? This is the first time I've implemented one, so I was a little in the dark on the best practices. I was using this tutorial as base for what I needed to do: http://tamsler.blogspot.com/2011/10/android-viewpager-and-fragments.html On Satur

Re: [android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
Well, normally, you don't even need to do that. FragmentPagerAdapter/FragmentStatePagerAdapter use the tag to determine what fragment goes in what page. So your pages will automatically reappear after the configuration change. This is why most samples do not do what you are doing, creating fragment

[android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread FiltrSoft
Ah, that makes sense. I knew it might have been related to something with Fragments I didn't understand as I am new to them. The only thing I'm not sure if is, I can use findFragmentById to retrieve the MyListFragment, but the MyDetailFragment would have the same id, with a different argument,

[android-developers] Re: how to check value of edittext input in gridview

2013-02-09 Thread Prabu Siabuabu
ah, my fault, sorry sir. this is what i've tried -> http://pastie.org/6105864 i just want to achieve that when i click in every single image on gridview layout, it will pop up an alert dialog that contain edittext. and i want to check the input from edittext if that's true or not. i can to chec

Re: [android-developers] Re: how to check value of edittext input in gridview

2013-02-09 Thread Prabu Siabuabu
i want to check if it's true or not from the input of the edittext. i failed to check in second image and so on. but in first image, i succeed to check the input. this is what i've tried -> http://pastie.org/6105864 Pada Sabtu, 09 Februari 2013 11:16:05 UTC+7, Paul-Pe

[android-developers] Re: how to check value of edittext input in gridview

2013-02-09 Thread Prabu Siabuabu
ah, my fault, sorry sir. this is what i've tried -> http://pastie.org/6105819 i just want to achieve that when i click in every single image on gridview layout, it will pop up an alert dialog that contain edittext. and i want to check the input from edittext if that's true or not. i can to che

Re: [android-developers] Installed platform version not showing up in Virtual Device Manager

2013-02-09 Thread don rhummy
Thanks for the reply. I checked and there's a check mark next to everything under Android 4.2, 4.1, 4.03, 4.0, 2.3.3. I downloaded them all again but still don't see anything but 4.2 in Virtual Device Manager! Could there be some issue with paths? How would I fix this? _

Re: [android-developers] onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
If I had to guess, your problem is that you are creating extra fragments. For example, at least on a complete rotation (portrait -> landscape -> portrait), you will have two of everything. Remember that your fragments will automatically be re-created on a configuration change, so you do not want to

Re: [android-developers] onCreateOptionsMenu being hit too many times

2013-02-09 Thread FiltrSoft
On Saturday, February 9, 2013 2:39:17 PM UTC-5, Mark Murphy (a Commons Guy) wrote: > > You claim that your problem is in onCreateOptionsMenu(), yet you do > not appear to implement it. > > Whoops, not sure what happened there, didn't paste Fragment: *MyListFragment.class* public class MyListF

Re: [android-developers] onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
You claim that your problem is in onCreateOptionsMenu(), yet you do not appear to implement it. On Sat, Feb 9, 2013 at 2:33 PM, FiltrSoft wrote: > I'm having some issue with using a ViewPager and two different layouts for > my app. My app has a listing and details view. When the device is in >

[android-developers] onCreateOptionsMenu being hit too many times

2013-02-09 Thread FiltrSoft
I'm having some issue with using a ViewPager and two different layouts for my app. My app has a listing and details view. When the device is in potrait, I'm using a ViewPager, where the user can swipe between the different detail views and when the device is in landscape, I'm showing both vie

Re: [android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2013-02-09 Thread Kristopher Micinski
"don't have a paid version of your app in the market" is a non solution: ad supported apps don't make real money for the mid range developers (with the top 1-2% of app developers perhaps being able make a modest profit). I know of at least one study to show users actually end up "paying" a good am

Re: [android-developers] Google maps api v2 issue

2013-02-09 Thread Mark Murphy
On Sat, Feb 9, 2013 at 1:13 PM, g...@deanblakely.com wrote: > The problem may not be complexity of the framework. Most tutorials for > Android lack specificity and there is usually never a "download working > project" option (as there is in your book). Here's a whole directory of Maps V2 working

Re: [android-developers] Google maps api v2 issue

2013-02-09 Thread g...@deanblakely.com
Thanks for the answer and I'm glad that it is NO. As for the complexity, when I first began developing for android I recall it took me less than a half hour to get the Hello Google Maps app working. I've already spent 6 hours on https://developers.google.com/maps/documentation/android/start#i

[android-developers] Re: Facebook lyk menu...

2013-02-09 Thread Arufian
you can take a look at this customizable animation projects : https://github.com/walkingice/gui-sliding-sidebar and https://github.com/gitgrimbo/android-sliding-menu-demo -- Arufian On Sunday, February 10, 2013 2:30:28 AM UTC+9, Sukhchain wrote: > > Hi every1 > > Can anybdy tells me how to

[android-developers] Facebook lyk menu...

2013-02-09 Thread Sukhchain smarty
Hi every1 Can anybdy tells me how to implement d sliding menu as that implemented in facebook application It would be better if u could send me any samples Thnkx in advance -- -- You received this message because you are subscribed to the Google Groups "Android Developers" gro

Re: [android-developers] Re: ALL DEVELOPERS PIRATED APPLICATION ALL OVER!

2013-02-09 Thread Anton Kaiser
Just for the fun of it, I've read all the answers here. And Rob H. is the one deserving my +1 ;) Still, the idea of your solution is good, but it is even easier to pirate your app. This is because the in-app purchase system is flawed an has already been broken. It is enough for any user to have

[android-developers] Re: Reply to a topic

2013-02-09 Thread Nobu Games
Weird... maybe that one particular topic is "broken". Can you post a link to that topic here? On Saturday, February 9, 2013 5:22:15 AM UTC-6, Harish wrote: > > Dear all, > > is there any better way to reply a topic, I receive digest of messages and > I tried to reply from Google groups using POS

[android-developers] make some changes to Context Action Bar

2013-02-09 Thread dashman
I'm using a Context Action Bar - and I'd like to like increase the spacing between the icons. Can that be done? I assume it's a theme related change. Ideally find the current value - add some amount and then set it. Also a more generic question... Given the active theme (could be Holo or Holo

Re: [android-developers] The method bindAppWidgetId(int, ComponentName) is undefined for the type AppWidgetManager error on Jellybean

2013-02-09 Thread Mark Murphy
if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.JELLYBEAN) { // use bindAppWidgetIdIfAllowed() } else { // use bindAppWidgetId() } On Sat, Feb 9, 2013 at 6:37 AM, Saqlain Abbas wrote: > Hi, > > I got an Android application which was using "bindAppWidgetId" it has been > working but on jell

[android-developers] The method bindAppWidgetId(int, ComponentName) is undefined for the type AppWidgetManager error on Jellybean

2013-02-09 Thread Saqlain Abbas
Hi, I got an Android application which was using "bindAppWidgetId" it has been working but on jellybean the same source code does not compile as the API is not available and i get error "The method bindAppWidgetId(int, ComponentName) is undefined for the type AppWidgetManager", i need a solution w

[android-developers] Flip images from url...

2013-02-09 Thread Salih Gündüz
I need an image flipper like gallery. I will parse images from json. Anybody have any example or tutorial?Thanks. Good work. -- -- 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@googl

[android-developers] Reply to a topic

2013-02-09 Thread Harish Kachoria
Dear all, is there any better way to reply a topic, I receive digest of messages and I tried to reply from Google groups using POST REPLY but it never worked, I tried it using IE8, Firefox, Chrome even it does not work from my iPhone, galaxy tab. always one message "An error occurred while commun

[android-developers] Expandable list view.

2013-02-09 Thread Sadhna Upadhyay
Hi Everybody, i am creating a app in which i have to fetch the data in expandable list from server and dynamically but i am very new in android can some one help me. Thanks sadhana. -- -- You received this message because you are subscribed to the Google Groups "Android