Tagged Questions
0
votes
2answers
21 views
Change TextView in Fragment OnPreExecute
I am trying to change a text view in the onPreExecute method in AsyncTask, however I keep getting Null Point Exception. Any help or alternatives would be greatly appreciated.
public class FragmentOne ...
0
votes
2answers
73 views
ListView shows repeated data everytime the fragment is created
Here is the code of my fragment where i am accesing a web service in asynctask to fetch data and display in list also i am lazy loading the images..When the fragment is created for the first time the ...
3
votes
2answers
82 views
Starting asynctask from message handler
I have a gps class in my application. In the onLocationChanged method I am sending a handler message to my activity which is supposed to execute an asynctask. My asyntask runs fine on its own if I ...
0
votes
2answers
112 views
How to Dynamically Update Fragment (SlidingMenu) When View Created
I have application that uses the SlidingMenu library. It' is essentially a Fragment in the main Activity that goes in and out of view when user swypes (e.g Youtube, Google+, Facebook).
The top ...
0
votes
0answers
108 views
frozen while loading data for a Viewpager using AsyncTask
In my code, I have an activity with a button that calls another activity with a viewpager and within this, three fragments.
//...
ViewPager pager = (ViewPager) findViewById(R.id.pager);
...
0
votes
1answer
104 views
How to call adapter inside dialogfragment inner class
I have a DialogFragment that opens when the application is launched the first time. The user selects a value which is then stored as a preference, then a listview is filled with data according to the ...
0
votes
2answers
105 views
Only load ListFragment once via AsyncTask
I'm trying to learn Android development and am still trying to wrap my head around how the framework works and how to properly extend all these classes.
My goal is this: An Activity that has a ...
0
votes
2answers
323 views
Make AsyncTask inside fragment run after FragmentTransaction.commit()
I have a FragmentTransaction in the activity, and I want the AsyncTask to run in the fragment after fragmentTransaction.commit(). How do I make AsyncTask run after commit? Because AsyncTask runs 2 ...
0
votes
1answer
177 views
onCreateView called 2 times before and after passing data with FragmentTransaction
Code from activity. I want to pass data to ListFragment with FragmentTransaction
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
0
votes
0answers
48 views
can Fragment use 2 asynctask at listFragment and detailFragment?
I have FragmentActivity with ListFragment and DetailFragment.
I need to create ListView in ListFragment.
Can i use 2 asynctask in the same time?
If cant :
how to create JSON with runnable thread in ...
1
vote
1answer
101 views
Correct approach for async ListFragment
I'm pretty new to Android and I'm finding it difficult to figure out the correct/best way to accomplish the following:
I'm using ActionBarSherlock to have a set of tabs that each load a fragment. ...
0
votes
0answers
80 views
Converting from Activities w/ Async Task to Fragments
I'm switching from Activities to Fragments in my app, and now I have one main Activity that displays fragments. (We're converting in order to make the design more responsive for tablets). Everything ...
0
votes
0answers
142 views
Fragement no longer exists for key Error
I have an application with three tabs (TabWidget using fragments). Each tab opens a fragment that contains a a view pager that is based on FragmentStatePagerAdapter. The view pager is populated with ...
2
votes
0answers
89 views
Update fragment of ViewPage with Web Service response
I am new to FragmentActivity, Fragment and ViewPager.
I am using FragmentActivity with 2 Fragments.
Each fragment is using the same data which I will get from web service call in AsyncTask.
Now I ...
0
votes
2answers
306 views
How to stop an AsyncTask in a Fragment after the Application closes
How to stop AsyncTask in fragment class after close application.
Here is my situation:
MainActivity class
public class MainActivity extends FragmentActivity {
}
BaseFragment class extends by ...
5
votes
4answers
4k views
java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
I'm using the support library for my app. In my FragmentActivity I'm using an AsyncTask for downloading data from internet. In the onPreExecute() method I add a Fragment and in the onPostExecute() ...
0
votes
1answer
90 views
Switching fragments
I need to change Fragment in View pager
I have getItem method in View pager adapter
@Override
public Fragment getItem(int position) {
fragmentPosition = position;
...
2
votes
1answer
72 views
Is it possible to swap fragments inside a background thread
My idea was to create the new fragment inside an AsyncTask, then on onPostExecute i would swap it with the progress bar fragment that is shown. My problem is that the fragment is never swapped so it ...
0
votes
1answer
198 views
Going from Listactivity to Listfragment
For the last couple of days i have been trying to go from current listactivity to listfragment. I load the data into my Listactivity through a an ArrayAdapter which works great. The data is first ...
1
vote
1answer
717 views
ASyncTask, hidden fragments, retaining instances, and screen orientation changes
My setup is as follows.
I have a FragmentPagerAdapter called from my Activity which loads two fragments. This is setup within onCreate.
In onResume I call an ASyncTask which loads data from a ...
0
votes
1answer
491 views
How to execute AsyncTask<> located in a fragment from its parent?
This seems harder than it look or I am doing it wrong. I need to update the content of UI elements in a fragment.
So, within an Activity, I start AsyncTask task like this
new ...
0
votes
1answer
448 views
Notifying activity of fragment swiped into view via a pager
I am having trouble implementing a feature in my Android app.
Here's the setup:
ItemPagerActivity: An activity that contains a fragment that displays a pager.
ItemPagerFragment: The fragment ...
0
votes
1answer
217 views
Call Fragment/Activity from onPostExecute
I have 3 Fragments in a Activity like splashscreen, login and register. My LoginFragment based on asynctask.
So how can I call registerfragment from onPostExecute() in the LoginFragment, after the ...
2
votes
1answer
82 views
How to return a view from a class using AsyncTask
I have a class (shown below) which extends Fragment. Now i need my class to return a view to the Other class when i create an object. Everything is working fine but i need this class to do the stuff ...
0
votes
0answers
251 views
how can i update view when fragment change?
i have a activity that have 2 sherlockfragment in this
The first two pages display fragments with custom list views which are built from xml from server using AsyncTask. However, when the app runs, ...
0
votes
1answer
562 views
Finish an activity from Fragment
In my application I have 2 fragment, Fragment A and Fragment B.On both these fragments Iam doing some XML parsing and populating listviews.I want to implement a splash screen for my app.So that it ...
0
votes
1answer
216 views
How to run functions in background of fragments in Android?
I have two fragments fragment A and fragment B.In both fragments Iam using asynctask and running some functions in background.These functions(for parsing XML and populating list view).When I start the ...
2
votes
4answers
991 views
Android ViewPager, Fragments and AsyncTask. How do i preserve the AsyncTask's state on orientation change?
To begin with; Yes, I've searched for an answer to this everywhere, but no one have had the same problem that i have. This question might seem to be the same as another question on here, but it's most ...
0
votes
1answer
721 views
External AsyncTask populating ListView from Fragment
I am developing an app based off fragments. A lot of the content of these fragments is collected from a database utilizing an AsyncTask. As such I'm trying to externalize the 'getting data' class so ...
-1
votes
3answers
331 views
doInBackground not working in Android fragment [closed]
I have a fragment Fragment1.In that fragment I am parsing XML and populating list view.I have to execute the function parsing and population of list view in background of fragment.So that it will not ...
0
votes
1answer
105 views
How to execute a function in invisible fragment of viewpager in Android
I have two fragments Fragment1 and Fragment2.When I start the application the functions defined inside both of the fragments gets executed.So it takes a long time on startup(Since XML parsing and ...
2
votes
1answer
34 views
is it so that some manufacturer's device does not support “support library”
I want to create an application for android, in which i want to use AsyncTaskLoader and FragmentActivity. I've kept minimum sdk version to 8 android:minSdkVersion="8". Therefore i have to import ...
0
votes
2answers
333 views
How to overcome “Can't create handler inside thread that has not called Looper.prepare()” issue?
I am trying to create fragments inside viewpager. In the adapter I am using threads to create fragments. Inside thread I am executing AsyncTask which further fetches the fragments. Inside each ...
0
votes
1answer
441 views
Fragment and AsyncTask
I have got the same problem for 8 days now and i hope that someone can help me, i am working on an application that parse multiple RSS feeds and display them on listview with fragment but the problem ...
1
vote
1answer
277 views
Orientation change makes App crash (if done while loading SherlockFragment)
I have two tabs hosted in my Main Activity (I use ActionBarSherlock).
My fragments load and parse a distant xml to populate the listview.
If I change the device orientation when fragment is fully ...
2
votes
1answer
462 views
Android Asynctask run twice in Fragment Tabs
My Asynctask run twice when my fragments were reattached. How can I make it attach only once. This causes Content View Not Yet Created when I quickly switch between tabs when it is running my ...
0
votes
1answer
506 views
Android Tab Fragments with listview
I got an error while trying to run my app. Could anyone please help me check on my codes? I will list out all my codes. I'm trying to implement fragments to my app.
MainActivity.java
public class ...
1
vote
1answer
351 views
Long running AsyncTasks for Fragments in a ViewPager
I have an activity powered by a FragmentPagerAdapter which adds fragments as the user swipes left and right.
This child fragment that is added is currently static and contains a ListView of items. I ...
2
votes
1answer
442 views
Do I need to manage the Android asynchronous task lifecycle?
Do I need to call cancel on an asyncTask in a fragment onDestroy event in case the asynchronous task hasn't finished yet when the user hits the back button and leaves the activity?
Do I need to also ...
0
votes
1answer
316 views
Listfragment not showing list
I tried to modify this code http://code.google.com/p/krvarma-android-samples/source/browse/trunk/RSSReader/src/com/varma/samples/rssreader/ui/RSSListActivity.java
in order to make it work with my ...
6
votes
3answers
369 views
How can I add rows to a listview asynchronously?
I need to populate a long ListView with data from the network, say 2-3 seconds for the entire data collection. I don't want the user to see a loading Dialog and wait for the entire list download. ...
-2
votes
3answers
250 views
App not working fine on ICS version due to NetworkOnMainThreadException
I have developed an Android App which will go live in few days.
I have come across a different problem when testing the app on ICS.
It is working fine on Pre-GingerBread and GingerBread version ...
0
votes
1answer
2k views
Update ListFragment after asynctask
I have two listfragment and one fragment in my application. I show you first fragment.
The application starts, Asynctask retrieves data and put them in arrayNews.
I think the problem is the update of ...
0
votes
1answer
180 views
Android Tab that makes http request and stores response
To clarify the title of this question, I have an android application that is communicating with a WCF restful webservice. At a certain part of the application the user can select from 3 tabs each ...
4
votes
2answers
420 views
Is it safe to keep a strong reference to a Fragment in an AsyncTask?
Since it's not recommended to keep a strong reference to a Context in a task (the context may get destroyed while the task is still running, but kept in memory by the task), I was wondering if the ...
4
votes
2answers
349 views
setRetainInstance fragment with UI Android
Ok, I created a Fragment with some UI (couple textboxes and stuff) and I used setRetainInstance since Im running an AsyncTask to query a server (request can only be sent once) and I need the result of ...
0
votes
1answer
846 views
Fragment switching with AsyncTask
My apps uses fragments to show a ListView in portrait mode or the ListView and "details" view, side-by-side, in landscape mode. I also have a menu item in the ActionBar that kicks off an AsyncTask. ...
0
votes
1answer
1k views
how to use asynctask in android-support-v4.jar Fragment?
I have a TabActivity which has two tabs. I load separate Activity in each tab (Activity A & B). Activity A, which is loaded in tab 1 has some controls and a ListView. I use AsyncTask to load data ...
1
vote
1answer
611 views
ListFragment with a Loader and an EndlessCursorAdapter - Nightmare
I will start with what I am trying to accomplish.
I have a ListFragment, with LoaderCallbacks associated to retrieve data from a DB. The data is downloaded using an AsyncTask, and inserted into the ...
0
votes
1answer
485 views
async task in static class
i'm using actionbar sherlock/fragments with my app
my problem is that i need to call a async task to run in the fragment which is a static class
the complier is complaining about "No enclosing ...
