The Android Compatibility Library is an optional API available to Android application developers to create tablet-compatible user interfaces.
1
vote
1answer
32 views
ListView: Prevent a view from recycling
I have a ListView wich use recycled views. I'm trying to prevent a view from recycle.
So I use setHasTransientState:
android.support.v4.view.ViewCompatJB.setHasTransientState(View view, boolean ...
10
votes
5answers
326 views
Android - problems animating ActionBar icon from Fragments
I'm having some problems consistently animating a 'refresh' icon in the ActionBar of my app.
I have a container FragmentActivity which swaps fragments in and out as the user navigates through the app ...
1
vote
1answer
532 views
WARNING: Found both android-support-v4 and android-support-v13 in the dependency list [closed]
I am trying to import the SliderMenu Demo and i get the following error in the project.
I successful imported the library but not able to import the library.
Lib: ...
2
votes
1answer
72 views
Using Android Compatibility Library
I have worked a lot with the Android Compatibility library and have always used the class in the library over the class in the Android jar to ensure backwards compatibility.
Is this the correct way ...
0
votes
1answer
71 views
Error loading ActionBarSherlocks' demos on Eclipse
I tried to load the demos on ActionBarSherlock but I'm getting an error on its Activities using FragmentTransaction. The activities are FeatureToggles and TabNavigation. I'm also getting an error on ...
2
votes
1answer
311 views
How do I add a Android Fragment to my FragmentActivity?
I am using the Compatibility Package, revision 4 to add Fragments to my Gingerbread app. No errors are logged however the Fragment doesn't show on the screen anymore(it did at one time before I ...
0
votes
2answers
208 views
Switching between two ViewPager contents
In my app I have the dropdown enabled in the ActionBar. The user has two elements to choose from. Depending on the choice I want a ViewPager to show different contents from different ...
1
vote
1answer
305 views
ActionBar refresh
I am using Android compat library to show a ActionBar at the top of the screen.
The actionBar contains a refresh button which is a rotating circle if it is pressed.
To activate the rotation of the ...
6
votes
2answers
196 views
How can I avoid deprecated methods and maintain backwards compatibility? [duplicate]
Possible Duplicate:
How to deal with deprecated classes in Android to keep compatibility
I ran into the deprecated Display.getWidth() method and saw that it has been replaced with ...
0
votes
1answer
317 views
NullPointerException after referencing a view by id in a new Fragment following Fragment.instantiate(…)
Ok first question on here bare with me.
I'm new to the Android Compatibility Library with Fragments and the ViewPager (android.support.v4) I'm having loads of fun with no JavaDocs in Eclipse
I was ...
4
votes
1answer
1k views
LinearLayout with dividers on pre Honeycomb
From API level 11 setDividerDrawable() and setShowDividers() was introduced on LinearLayout, enabling the linear layout to show dividers between child elements. I would really like to use this ...
1
vote
1answer
41 views
Android Compatibility Library and New Software Releases
QUESTION
I use a custom version of the Compatibility Support Library that enables me to use Google Maps with Fragments.
My question is, when new software releases happen, such as Jelly Bean just ...
0
votes
1answer
876 views
Why is android.util.LruCache.* not found when using android-support-v4?
I am writing a project that uses LruCache, which is included in the android-support-v4.jar compat library. When running on devices with JB, the code works fine, but when I run it on my Droid X with ...
0
votes
0answers
152 views
Android support library v4 problems with soft keyboard on < 3.0 devices
I'm using the latest version of Android Support Library (for Fragment,
FragmentActivity etc classes).
This bug is present on < 3.0 devices (tested with 2.1 emulator from
Android SDK), but not on ...
1
vote
1answer
620 views
Android accessibility service backwards compatibility and jelly bean
I've got an app that uses the accessibility service to monitor for events. It's always worked fine in versions of android up to ICS, but with Jelly bean I'm not having much luck.
As the documents ...
0
votes
1answer
316 views
ListFragment activated item background
I have a ListFragment with default layout and I use setItemChecked to check the items. On Honeycomb and ICS the checked rows automatically have the background color applied as I am using ...
5
votes
3answers
989 views
Does v4 support library use new classes when available?
I know that the v4 support library can be used to implement in old android versions things that have been introduced in more recent versions, such as Fragments.. If we implement an app that uses the ...
0
votes
2answers
270 views
Missing function in ViewPager from Android compatibility library
I'm trying to use the function setOffscreenPageLimit() in ViewPager, but Eclipse says The function setOffscreenPageLimit() is undefined for the type ViewPager
However, I see it in the docs and in ...
1
vote
1answer
719 views
HTC One X - shows “compatibility” menu icon
I have application which uses Sherlock ActionBar package.
The application uses platform-specific behavior for menu (so it's 3-dot icon in ActionBar on ICS and classic menu under HW button on ...
0
votes
2answers
677 views
Unable to start activity caused by NullPointerException at ContextImpl.openFileOutput
I've released an app which uses the Android Compatibility Library for Google Maps (https://github.com/petedoyle/android-support-v4-googlemaps) and I've received some odd "Unable to start activity" ...
8
votes
8answers
3k views
How can I refresh my ListFragment when it returns to the layout from back stack?
First I should mention that I am using the ActionBarSherlock library for backwards compatibility.
I have an activity which adds a ListFragment when it is first started. I have a custom Loader which ...
2
votes
4answers
284 views
Android Fragments with compatible library
I can't make it work.
I found many similar question here, examples. But nothing help and nothing work.
Does anyone have a working Fragments in Android 2.2 with android.support.v4 library? (If you are ...
3
votes
1answer
1k views
Android DialogFragment onViewCreated not called
I am using android compatibility library (v4 revision 8). In the custom DialogFragment the overrided method onViewCreated is not getting called.For eg.
public class MyDialogFragment extends ...
5
votes
4answers
3k views
NullPointerException in FragmentManager
I'm using the Android compatibility library and occasionally get a weird NullPointerException:
java.lang.NullPointerException
at ...
0
votes
1answer
443 views
Various exceptions caused by the Android Fragments compatibility library
I have built an app using (Peter Doyle's slight variant of) the Android support/compatibility library (v4, revision 7) to put together an Activity that uses both Fragments and Google Maps. I have ...
0
votes
1answer
163 views
Alternatives to list indicators in Android API Level 10 and below
I am in the process of making my application compatible with the earlier versions of android using the Android Compatibility library. One of the integral parts of my application is to be able to ...
5
votes
3answers
4k views
Upgrading Android SDK causes java.lang.VerifyError crash
Since upgrading my Android SDK, I get a java.lang.VerifyError crash booting my previously working application.
Looking at the logs, there are a few new issues leading up the crash that were not there ...
11
votes
1answer
3k views
ViewPager.setOffscreenPageLimit(0) doesn't work as expected
The fragments I use in my ViewPager instance are quite resource intensive, so I'd only like to load one at a time. When I try the following:
mViewPager.setOffscreenPageLimit(0);
...
1
vote
1answer
997 views
Fragment addToBackStack crashes app
I have a FragmentActivity that loads one custom ListFragment at startup, and replaces it with a new fragment after an item is clicked.
In the fragment activity subclass:
public void onCreate(Bundle ...
0
votes
1answer
2k views
Android CirclePageIndicator not working
Im not able to load the page with circlepageindicator. This is the xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" ...
15
votes
2answers
5k views
Android Support Package / Compatibility Library - use v4 or v13?
I've just read this description of the Android Support Package / Compatibility Library...
http://developer.android.com/sdk/compatibility-library.html
... and it's left me a little confused! It says ...
1
vote
2answers
553 views
Trouble changing icons on ActionBar
My application calls a web service on startup to see if the user is logged in. If they are logged in it needs to show a logout icon. If they aren't logged in, it needs to show a login icon. If their ...
6
votes
3answers
1k views
Wrong fragment in ViewPager receives onContextItemSelected call
I have an app that shows a few fragments (of the same type) in a ViewPager and I'm having some trouble with context menu items. (I'm using the support library).
When a context menu item is selected ...
1
vote
1answer
592 views
Parent Fragment Not Displaying Child ViewPager
I am using the Android Compatibility Package with API Level 10. I have a FragmentActivity and in its onCreate method, I dynamically add a newly created Fragment instance (myPagerFragment) using:
...
3
votes
1answer
667 views
How to build the Android support package
In this question, the only fix involves rebuilding the Android support library from it's source. I'm not sure how to do this. In Eclipse, I've tried: File -> Import -> General -> File System -> with ...
0
votes
3answers
2k views
android: progress DialogFragment does not get displayed at the beginning of the AsyncTask
I´m using the compatibility library v4+.
Following other threads and the dev guide I´m trying to create a fragment that calls a progress dialog from the activity that creates it.
The approach uses ...
3
votes
1answer
465 views
FragmentActivity is lost after app is paused for a while
I am experiencing some weird behavior with an android app I have been working on, here is what happens:
I use the app for a while, works fine without problems
I "pause" the app by clicking on the ...
5
votes
1answer
3k views
Error inflating fragment from layout android-support-v4
I'm having troubles working with fragments to the 2.2 platform. I imported the android-support-v4.jar library to support fragments.
I tried to change the target to Honeycomb 3.0, and the code works. ...
7
votes
8answers
18k views
android-support-v4.jar isn't importing correctly in Eclipse
I'm trying to get an app to compile that uses the android-support-v4.jar and the Fragmentation classes it contains, but I keep getting messages whenever I try to compile that there are errors in the ...
17
votes
5answers
13k views
Android Support Library (v4). Getting the source and attaching it to the library/jar in Eclipse
Having the source code attached to external libraries is awesome. Where to find the source code for the v4 support package? Preferably it would be a zip file which could be easily attached to the ...
0
votes
1answer
959 views
Select photo from Android Gallery then display it in a fragment?
I am developing an Android app using fragments and would like the user to be able to pick an image for scanning purposes. I have a fragment that allows the user to select their desired source (camera, ...
29
votes
7answers
13k views
Android Fragments. Retaining an AsyncTask during screen rotation or configuration change
I'm working on a Smartphone / Tablet app, using only one APK, and loading resources as is needed depending on screen size, the best design choice seemed to be using Fragments via the ACL.
This app ...
1
vote
2answers
405 views
Multiple fragments in the same space?
I am developing an Android app with fragments that has many possible flows. With simple Activity-based flow, it can flow like this:
A -> B -> E
A -> C -> E
A -> D -> E
With fragments, I would like ...
18
votes
3answers
10k views
Options menu not showing in ICS using compatibility library
I can't get an options menu to show in a Fragment in ICS in a project which uses the android-support-v4.jar library. I'm testing on a Galaxy Nexus handset.
We aren't using the action bar, and need ...
3
votes
2answers
4k views
FragmentPagerAdapter cannot be resolved to a type
I'm trying to follow Google's tutorial for implementing a ViewPager with Fragments using the Compatibility Package as described here: ...
6
votes
4answers
3k views
android-support-v4 error generated with R.java being erased
ok, steps im following.
1-create new project from existing source
2-select Android\android-sdk\extras\android\compatibility\v4\samples\Support4Demos
3-finish
So, my beautiful eclipse creates the ...
2
votes
0answers
277 views
Is the duration specified in an XML-defined animation truly in milliseconds?
I'm using the latest version of the support library to allow the use of Fragments on devices running versions of Android < 3.0. Any time I want to switch the current fragment I do so using this ...
9
votes
3answers
5k views
Javadoc for Android project in Eclipse fails with NullPointerException
I am trying to generate javadoc comments in Eclipse for my Android Project, but I keep getting a NullPointerException. The problem occurs only when I try to generate javadocs for classes that import ...
5
votes
1answer
795 views
Android View Pager flings the wrong way
I have found an interesting bug in the android view-pager (r4 of the ACL).
The velocity tracker will fling the view-pager the wrong way when scrolling your finger too fast/off the edge of the screen ...
3
votes
2answers
984 views
How to commit Fragment transactions in FragmentPagerAdapter in onLoadFinish callback method?
I would like to notify ViewPagerAdapter that dataset changed in Loader.onLoadFinish callback function.
It is prevented because state of fragments might be saved.
From ...

