theBlbDan
theBlbDan
Looking, looking....uh, no. That isn't what HoloColorPicker is about. Amazing what reading the description can do.
The readme isn't real clear, but a little investigation shows that `getColor()` returns an int that represents an ARGB color. Since an int is typically 4 bytes, that's 32 bits....
Absolutely. I use a FragmentStatePagerAdapter, which is pretty much a ViewPager, for one of my projects. Thus, each tab is a new fragment. Bind my adapter to the tabs ```...
Read your documentation to make sure you're overriding the appropriate methods. You'll notice that I am using a [FragmentStatePagerAdapter](http://developer.android.com/reference/android/support/v4/app/FragmentStatePagerAdapter.html) class, you are using a [PagerAdapter](http://developer.android.com/reference/android/support/v4/view/PagerAdapter.html).
This pretty much only signifies that you have a problem in your code, not PSTS. You'll need to provide some context, code, etc. I see you are using FragmentPagerAdapter. I'm...
Is this a question or a statement?
1) Use getChildFragmentManager() instead of getSupportFragmentManager() 2) Have MyPagerAdapter extend FragmentStatePagerAdapter instead of FragmentPagerAdapter
Are you using LoaderManager? If so, I found that each tab's fragment needs to use a unique loaderID in getLoaderManager().initLoader(loaderID, bundle, this); Since the loader is created in the main...
Any hopes that you'll work on this?
If you aren't understanding @zeeshanaslam78's instructions, then you don't understand your build environment very well. If you are using gradle (Android Studio for example) to build your project, then you...