The Android Support Library contains backported APIs from newer platforms and APIs that offer utility functionality.
0
votes
3answers
38 views
Best practice for keeping Fragments for later display
I have an activity with a FrameLayout in it.
The activity should show four steps, and each step is a Fragment. When I want to go back-further, I don't want my fragments to be recreated. I would like ...
0
votes
2answers
39 views
getSupportFragmentManager() method is undefined
I have a Main activity which extends SherlockActivity
The following code seems to be giving me trouble
PopularFragment fragment = new PopularFragment();
FragmentManager fragmentManager = ...
0
votes
1answer
18 views
Add JS and CCS support to Android Studio project
I just installed the new Android Studio and I'm looking for a way to be able to get support for CSS and JS (autocomplete, highlighting for incorrect usages) as i would in PHPStorm and also WebStorm, ...
0
votes
1answer
30 views
getSupportFragmentManager() cause java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
I was trying to figure out why:
getSupportFragmentManager().beginTransaction().commit();
fails, with
java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
in a ...
1
vote
2answers
117 views
Cannot update dynamically created fragment after rotation
I have a problem with fragments and configuration changes (rotation) : I have a screen with a button that randomly update the Text of a fragment.
Everything works fine untill I rotate the device ...
0
votes
1answer
24 views
Tabs at the bottom of screen when using android.support.v4.app.FragmentTabHost as a TabHost
I want to bring tab to the bottom of the screen.The below code is working for tabhost but when I apply it to FragmentTabhost it fails.
<RelativeLayout
android:layout_width="fill_parent"
...
0
votes
3answers
38 views
setDisplayHomeAsUpEnabled in Compatibility Library
In my app I have a some fragments that I switch between manually in the phone version and I want to show the < arrow in the ActionBar. To do this I know I need to call ...
0
votes
1answer
25 views
Why are there some class files contained in the android-support-v4.jar but not in its source folder?
In the android support library directory of Android SDK: <SDK PATH>\extras\android\support\v4, there is a file named android-support-v4.jar and a srcfolder.
When I decompile the jar file using ...
0
votes
2answers
36 views
ActionBarSherlock android-support-v4 jar checksum difference
Can someone explain why the android-support-v4.jar included with ActionBarSherlock has a different size (and, therefore, checksum) then the one added automatically by Android when setting up a new ...
0
votes
0answers
25 views
Android - crash without stacktrace when using support library rev 13
Recently I updated my android support library to the latest one - revision 13.
Since then, it began to crash when I opened an activity that uses ViewPager and Pager adapter along with Tabs. The weird ...
0
votes
1answer
67 views
The method getChildFragmentManager() is undefined
I have a SherlockFragmentActivity, this Activity have inside a SectionsPagerAdapter and a ViewPager.
When I call the constructor of the SectionsPagerAdapter passing "getChildFragmentManager()" as a ...
0
votes
1answer
13 views
ActionBarSherlock doesn't show title
public class Intro extends SherlockFragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
0
votes
1answer
102 views
Android new SlidingPaneLayout disable swipe
I am currently using the new SlidingPaneLayout with a map. The problem is when I interact with the map I always open the left menu. I have already tried to override on touch method on the sliding pane ...
0
votes
3answers
38 views
Testing Android support on older versions
I am making application with target SDK set to 17 and min to 8.
So for some features I have to use Support library v4
Question is how can I test it works on older devices?
I am testing on my phone ...
0
votes
2answers
40 views
Activity lifecycle after finish() has called
I wonder if onSaveInstance(), onPause() and onStop() are called if I call finish() or the lifecycle jumps directly to onDestroy().
I also would like to know if android.support.v4 library's ...
1
vote
0answers
27 views
DefaultValue for <preference /> isn't stored, does the PreferenceManager ignore it?
Maybe the question is very trivial and my google-skills are not good enough but I couldn't find any solution for the following Problem.
I've built a PreferenceFragment which is compatible with the ...
0
votes
1answer
45 views
android.support.v13.dreams.BasicDream cannot be resolved
I'm trying to work on extending BasicDream which exists in package: android.support.v13.dreams. I have tried downloading all most all android version (just trying luck to get it working) but I'm ...
0
votes
1answer
74 views
FragmentTabHost with drawable icon
I have implemented tabs using FragmentTabHost in support package, but the drawable icon is not shown?
How to show the drawable icon with FragmentTabHost?
mTabs = ...
0
votes
1answer
190 views
Drawerlayout children views overlapping
I've been trying to make a DrawerLayout that has a ViewPager and a LinearLayout attached to the bottom of the DrawerLayout. The problem is that the ViewPager and LinearLayout are overlapping at the ...
0
votes
0answers
55 views
Issue in managing Tab states using Fragment and FragmentActivity for android.support.v4 library
I have worked on TabActivity in last project and I manage all the states, but now TabActivity is deprecated so I decided to use Fragment and FrameActivity with Tabs using android.support.v4 library to ...
1
vote
2answers
369 views
Gradle can't find dependency (Android support library)
I have a problem that Gradle can't find my dependency (Android support library).
My build.gradle looks like this:
buildscript {
repositories {
mavenCentral()
}
dependencies {
...
0
votes
2answers
889 views
Error inflating DrawerLayout
public class HomeActivity extends Activity {
private String[] drawer_options;
private ListView mDrawerList;
private DrawerLayout mDrawerLayout;
private ActionBarDrawerToggle mDrawerToggle;
private ...
0
votes
2answers
202 views
Inflating view with Google Maps api v2 for Android
Please help. I have tried and implemented all other solutions, but still no luck integrating google maps in my app.
The current problem is at inflating point in my fragment
05-21 00:17:24.629 ...
2
votes
1answer
1k views
Android error - Caused by: java.lang.NoClassDefFoundError: android.support.v4.util.SparseArrayCompat
I have these log errors when launching my app:
05-20 01:48:35.312: E/AndroidRuntime(23032): FATAL EXCEPTION: main
05-20 01:48:35.312: E/AndroidRuntime(23032): java.lang.RuntimeException: Unable ...
1
vote
1answer
349 views
Android studio : My project don't understand support package from Action Bar Sherlock
Like the title, I am facing the problem when import my project from Eclipse to Android studio.
The flow is :
- Import my project
- Download the latest Action Bar Sherlock and import it like a module.
...
2
votes
1answer
1k views
Android DrawerLayout component
I have some problems with the DrawerLayout component. I'm using the android-support-v4 jar and when I'm launching the app I have this exception :
05-19 01:33:57.402: E/AndroidRuntime(3120): FATAL ...
1
vote
1answer
408 views
package android.support.v4.util does not exist
Since the last update for android support libraries, I am having issues with importing LruCache. Eclipse, and now even android studio, keep saying that package android.support.v4.util does not exist.
...
7
votes
2answers
2k views
ERROR : java.lang.NoClassDefFoundError: android.support.v4.content.LocalBroadcastManager [duplicate]
I have gone through all the related threads about his error but i was not successful .
App was working fine and i found some updates on SDKs yesterday .
I Updated by Android SDK Tools to 22(Rev.) ...
11
votes
3answers
2k views
Use support library in android projects and libary (Android Studio)
I'm using the new Android Studio, I'm looking for a way to use the support library from multiple projects. Basically I have a project that uses the ActionBarSherlock this projects requires the support ...
15
votes
1answer
1k views
Add support library to Android Studio project
I just installed the new Android Studio and I'm looking for a way to import the support library for Android.
Where is the option for that? In Eclipse that are just two clicks. I googled for it but ...
1
vote
0answers
55 views
Compatibility for Java library methods that require Android API level 9?
Some Java library methods like DecimalFormat.setRoundingMode have a @since 1.6 entry in their documentation.
/**
...
* @since 1.6
*/
public void setRoundingMode(RoundingMode roundingMode) {
...
}
...
0
votes
2answers
68 views
How to deal with Android dependencies
I create an new project. And the IDE automatically add android-support-v4.jar to Android Dependencies, just as the following figure. But now, I need to import a v13 class. How can I change ...
1
vote
1answer
151 views
Actionbarsherlock use activities or fragments
I've been working on a school project in a course for Mobile prototype for a couple of weeks when our mentor said we should change our way of navigate in the app.
Before the app started with a simple ...
0
votes
1answer
39 views
How to reference .jar from other project with ant?
I have project A. A needs to refernce the android support library which I have in project B. I would think it should be as easy as adding a class path entry such as:
<classpathentry kind="lib" ...
0
votes
0answers
60 views
NotificationBuilder.setProgress doesn't do anything on 2.3.5
I'm using the v13 support library. I build a progress notification with the notification builder and .setProgress. it works just fine on a 4.2.2 device, but on 2.3.5 nothing is shown.
is this the ...
0
votes
1answer
131 views
Change height of pagerTabStrip tabIndicator
I am using android.support.v4.view.PagerTabStrip in my application.
Here's how I use tabIndicator
PagerTabStrip pagerTabStrip = (PagerTabStrip)
findViewById(R.id.pager_title_strip);
...
0
votes
1answer
39 views
New Android Development for v4+ Should I use the Support Library?
Documentation says the support library helps backport new features to older version. Should I use it if I am developing a new app designed for Android 4+ devices only?
1
vote
1answer
86 views
multiple Android Support library v4
I have a project which is using three external libraries: ActionSherlock, ViewPagerIndicator and FacebookSDK 3.x
All of them need the android support library but the problem is that if i link every ...
0
votes
1answer
73 views
Using an Android-Support-Fragment in Preference Headers
My app supports Android versions up to Android 2.2, that's why in general I'm using support Fragments (i.e. SherlockFragments).
My preferences are build to use headers when API > 11 and the ...
0
votes
1answer
137 views
Android viewpager: weird bug when adding/removing page
I dont know how to explain this, so i uploaded a video in Youtube.
Everything works fine when i am adding pages. Also removing page works if i start at the end of the list and move progressively to ...
1
vote
2answers
216 views
Google maps fragment - blank screen when I launch my app
I have google maps configured and set (or so I think), but my device comes up with a blank screen when I launch the app.
I believe I have all the proper settings and requirements to utilize the ...
2
votes
1answer
150 views
google map V2 issue with jar file
i have developed google Map v2 tutorial in February help of this tutorial.
Its working fine at that time
my code is below:
<?xml version="1.0" encoding="utf-8"?>
<manifest ...
0
votes
1answer
120 views
My Android ListFragment isn't displaying the list
The following ListFragment doesn't display anything other than a blank screen. I know the data are present. I'm not getting errors, just a blank (white) screen. I'm sure it's something silly. I'm ...
1
vote
1answer
228 views
Problems with Linker in Xamarin Android 4.6
Yesterday I've downloaded new version of Xamarin.Android wich was 4.6.2. When I tried to build my project wich correctly worked in previous versions (<4.6) now I get the following error:
(sorry ...
0
votes
0answers
149 views
How to use google Map Api2 along-with-other-fragments-in-an-app
Am trying to create and app with one activity but multiple fragment. i am using android.support.v4.* to build the fragment.
Each item i have created so far by extending Fragment, I want to use the ...
1
vote
4answers
927 views
Gridview v7 support for older api android.support.v7.widget.Gridlayout failed to instaniate
I've been trying to use the v7 support library to use a grid layout in my android project. I've seen that many people have had the same issues that I'm having but all of their fixes don't work for me. ...
0
votes
2answers
566 views
Eclipse and Android SL GridLayout not working together - “android.support.v7.widget.GridLayout could not be instantiated”
I'm new to Android development, so it's possible this is a simple question. Apologies if it is - I spent quite some time searching but couldn't find anything that worked. (EDIT: apologies in advance ...
1
vote
1answer
926 views
android.support.v4.app.Fragment: undefined method getChildFragmentManager()
I'm using ActionBarSherlock and ViewPageIndicator and I tried to implement nested fragments, but the method getChildFragmentManager() is undefined in myandroid.support.v4.app.Fragments.
There are no ...
1
vote
1answer
195 views
Get Item Position From Custom Adapter
Since PreferenceFragment is not available in the support library I created a ListFragment to show a list of settings to a user since I don't have a lot of settings to show. I also created a custom ...
1
vote
2answers
315 views
How to solve this “Class requires API level 11 (current min is 8)”
In my application some methods needs minimum api level 11 .
When i run it on android 2.3.3 (api level 10) it crashes .
I reffered this links
How to fix "Call requires API level 11" with ...



