Tagged Questions
0
votes
1answer
17 views
Start dynamic (Fragment)Activity
I think the question says it all: I want to create a new FragmentActivit in my code and start it. I think about something like this:
FragmentActivity fa = new FragmentActivity();
...
0
votes
1answer
27 views
onActivityResult returns before fragments are ready
Im using actionbar tabs to display several fragments and for one tab I also launch the camera based on a fragment button click. I want to update the fragment buttons and Imageview based on the result ...
0
votes
0answers
22 views
onActivityResult never gets called in fragment if intent has extras
I'm trying to do something that seems like it should be a lot easier than this. I have a Fragment that calls on the Camera intent and passes extras to place the file.
The file gets created and ...
0
votes
3answers
21 views
Can't load LayoutInflater in Background Thread
I have a Fragment which has a lot of code in the onCreateView method so I thought I would be a great idea to place this code in an external thread. The problem now is that I have to load a layout in ...
0
votes
3answers
59 views
Android - How to reference a Fragment from another Fragment within the same Activity?
PROBLEM:
When I try to reference the layout of one Fragment from another via the parent Activity. The layout I am trying to access is always null.
I believe it is something to do with the onCreate() ...
2
votes
2answers
134 views
Android navigation from sliding menu - fragments or activities?
I'm upgrading an Android application that used the Dashboard pattern to the Sliding Menu, with a library by jfeinstein.
Originally I had a DashboardActivity that had 6 buttons, each of which started ...
1
vote
0answers
51 views
Using Fragments instad of separated activities
im going to write a little android app. Nothing complicated, with 6 "screens". 4 of them are on the same view navigation hierarchy level. 2 are subscreens of one of those 4.
For example screen A ...
0
votes
2answers
67 views
Fragment and Activity Issues
I am trying to create a simple set of screens in an android app. The app begins with a menu screen with buttons. After a choice is made I then want to launch an activity built with 2 fragments (one ...
1
vote
1answer
105 views
runOnUiThread in fragment
I'm trying to convert an Activity to fragment. The error mark on runOnUiThread.
on the past:
GoogleActivityV2 extends from Activity. runOnUiThread in class
ExecuteTask. class ExecuteTask nested ...
2
votes
2answers
56 views
setContentView in fragment
I'm trying to convert a Activity to fragment. The error mark on setContentView.
here is my code
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
...
0
votes
1answer
57 views
How to run a method of a fragment from an activity, using Tags?
I've got a little app in which I created three swipeable tabs using eclipse. One of these is a common fragment while the second and third are ListFragments each of them gets it's data from a Cursor.
...
-5
votes
2answers
60 views
How to use Fragment in Android 2.2 with image sliding capability [closed]
I am trying to develop a NewsReader app in Android 2.2. I am looking for Sliding feature similar to this:
http://i.stack.imgur.com/nb3h4.jpg
In the center of the App I need to add one TabHost kind ...
3
votes
2answers
85 views
Are Custom Objects Passed by value or passed by Reference in Fragments and Activities.?
hello Java and Android Experts. I am having a Problem.
I am making a XMPP based chat Application. There are a few things that are confusing me.
I have a class named Room_Structure which implements ...
0
votes
2answers
57 views
Send String from an Activity to a Fragment of another Activity
I have two Activities (A and B) and a Fragment F
The Fragment F is contained in the Activity B
I'd like to send Strings from Activity A to Fragment F
How can do that?
Thanks!
0
votes
0answers
91 views
Tabs issues for nexus 7 and Galaxy Tab2 7.0. It stretches and squeezes whereas in other devices it works fine
I am encountering an issue related to Tabs in various devices
I am using 5 tabs and ech tab has text and a drawable which i assign at runtime in my HomeTabActivity.
I have a patch of code declaring ...
3
votes
1answer
63 views
ListView no longer clickable after rotating device
I've got an activity with two fragments, one that displays a ListView of items using an adapter, and the second displays info about a specific list item, when it is clicked.
Everything works fine, ...
0
votes
0answers
58 views
getActivity & getSherlockActivity return different pointers to the main Activity [closed]
I have an app working when run on an API Level 15 emulator but it crashed when I try it on a Level 11 emulator.
Basically, on the level 15 emulator I log an Activity when it's created, and also from ...
0
votes
0answers
126 views
Activity loop using onNavigationItemSelected on an ActionBar
I've been trying to write an activity that has an ActionBar where you can select what view you want. I've created a base activity class with most of the ActionBar specific code to extend to classes ...
0
votes
0answers
35 views
Saving a Fragment's exact current state
I have a bunch of Fragments displayed one by one in an Activity, switching from one to another depending on what the user does.
I'd like to retain their exact state for when they're displayed again ...
1
vote
1answer
39 views
setRetainInstance(true) with Activity in the Background
if I have an Activity which hosts a Fragment with setRetainInstance(true) what will happen if this Activity is killed when it is in the background i.e another Activity is in the top of it . does the ...
-1
votes
1answer
28 views
Restrict call for Activity life cycle when using Fragment? [closed]
I implement Fragment life cycle method, but what I observed is it give callback to Activity Life cycle method also. So how can I restrict Activity life cycle method in this case?
1
vote
2answers
157 views
Android - How to use the ActionBar to navigate between Fragments
New to ActionBar and Fragments but familiar with Android in general.
I have been following a few tutorial. So far I have the following:
3 Fragments that I want to navigate between (each has an ...
0
votes
0answers
24 views
Inflate expandablelistview over the current activity
I have a expandablelistview, and I want the drop down list to be inflated over the activity. Right now, when I open the list it pushes all the buttons and edittext boxes down. I want the buttons and ...
2
votes
1answer
108 views
Delay between bindService() and onBind() when starting a Service
I'm facing a strange problem with my app. I have a LocationService that runs in the background. The way I manage its lifecycle is:
In onResume, every activity uses ...
1
vote
1answer
234 views
The constructor Intent is undefined error
I am using fragments. I have a spinner in the fragment. I want to lauch a new activity when spinner item is selected. I am getting this error
Error
The constructor Intent(UserHomeActivity, Class) is ...
-1
votes
1answer
53 views
Replace single Activity with multiple Fragments
Is it possible to replace a single Activity using multiple Fragment objects? If so, how would I go about handling the orientation changing?
1
vote
0answers
59 views
how to prevent Fragments firing onCreate&onCreateView on activity recreation
So I have activities A, B, C
App flow is A->B->C
A,B are connected with logging-in functionality and are launched only once to log in.
Whole app is inside C Activity. A,B are alive when user uses C. ...
0
votes
2answers
51 views
Bundle value overwriting
I have an activity called ProductDisplayActivity with a fragment within. This fragment gets created in the onCreate method of my activity like this:
ProductInfoFrag = new ProductInfoFragment();
...
2
votes
3answers
141 views
Start an activity from a fragment
I have 2 fragments with on both fragments a button. When I press the button I'd like to start a new Activity. But I can't get it to work.
The error I'm getting: ERROR here: Type mismatch: cannot ...
0
votes
1answer
209 views
Android: Stretch the dialog fragment layout say Fit To Screen on Orientation change
I have a Dialog Fragment and when the layout in this fragment is inflated:
When i change the orientation of this screen the dialog gets condensed and looks as if its forced to fit in the landscape ...
0
votes
0answers
16 views
In old versions I can put an activity as the content into a tab, but now Google asks us to use fragment instead. How can I do the similar thing?
For example in a tab I put an activity which receives information from the internet and shows it. Now, when I establish a new project with the selection "scrollable tabs and swipe", what should I do ...
3
votes
0answers
344 views
Card Flip Animation between Activities
How to do Card-Flip Animation between Activities
http://developer.android.com/training/animation/cardflip.html
The above link Switches Between Static Layout.. I want to do a card-flip Between 2 ...
4
votes
1answer
528 views
Switching fragments - Google Map Fragment V2 - Activity has been destroyed Error
I have a Maps Activity (SherlockFragmentActivity) that loads in a Maps Fragment that has 2 buttons and switches between showing 2 different fragments (GoogleMapFragment & ScaleImageViewFragment)
...
0
votes
1answer
130 views
Having Issues with an AsyncTask in a Fragment
I'm in the process of trying to convert my code to work with fragments. I'm pretty new to Android, and I initially started out by making a lot of classes and just changing from one Activity to ...
2
votes
2answers
41 views
Change views in android
I'm currently developing a little application that uses a login screen and a main screen. I'd been watching how another developers had been made the screen switch, some developers adds and remove ...
1
vote
2answers
83 views
Android: Starting a sharing intent closes my activity
In my fragment when I try to lunch a sharing intent, it closes my application. I want the intent to appear on top of my application and when the user finishes sharing and presses the back button, I ...
0
votes
0answers
40 views
Save content when turning into landscape, Fragments and Activities
I have Activity A with ListFragment A and Activity B with Fragment B (detailFragment). When I go into landscape I have Activity A with Fragment: A & B side by side.
Let's say I'm in ...
0
votes
0answers
74 views
Android: AlertDialog becomes invisible and pops up on orientation change
This is kind of very unusual issue i have come across with :
The alert dialog is supposed to pop up on Back key press from some activity but what is happening is kind of very weird,
I am pressing ...
0
votes
0answers
132 views
Overlay Fragment onto Activity
I'm working on an application where we are using the ESRI map as the foundation. So our main view will be of the Map and then all interactions will center around manipulating the map and it's ...
0
votes
1answer
164 views
Android: switch to a new fragment inside a fragment?
I have an Android application with a MainActivity and I do this to create navigational tabs in onCreate:
ActionBar myActionBar = getActionBar();
...
2
votes
1answer
61 views
How to make a core of activity on android?
I am new to Android development. After learning from many tutorials I got many Activities and many Fragments. How can I make a core engine to check what Activity is running and what Fragment is ...
0
votes
0answers
168 views
How to call Activity from intent using FragmentActivity?
hi i need 5 tabs in my activity. Things are so simple with TabActivity but its now Depreciated. Now i am using FragmentActivity to achieve Tabs. problem is it only return a view layout in onCreateView ...
0
votes
0answers
122 views
onActivityResult is making Fragment getView() return null
I have a fragment that lets a user build a queue of files. I have two buttons, both where a user selects a file from a file manager (another one in the system, like Root Explorer). I start that ...
1
vote
1answer
330 views
Null Pointer exception in Fragment on callback from Activity
Before we go on, I know what you're thinking. I initialized my object. I also initialized in the appropriate method (I tried onCreateView and onResume).
My problem is an object (actually, more than ...
0
votes
1answer
326 views
ViewPager + Fragments Starting new Activities
If I have a viewpager where each page is a fragment. And some of those fragments want to start other views / activities do all those requests have to be passed to the parent activity. So for every ...
1
vote
1answer
111 views
How can I embed a loading progress indicator in a ListActivity and Fragment
Is there a way I can embed a loading progress indicator in a ListActivity or Fragment the same way that I can call setListShown() in a ListFragment? I can use a loading dialog but I would prefer to ...
1
vote
1answer
92 views
Controlling android fragment creation order
So, I've got 3 fragments in a FragmentActivity. I have an xml layout file with some containers etc. so I setContentView(R.layout.my_activity) and then programmatically add the 3 fragments. 2 of these ...
1
vote
1answer
423 views
Activity and Fragment Lifecycles and Orientation Changes
I have been having very odd issues with Fragments and orientation changes that have been causing force closes and not following a logical pattern.
I created a simple Activity and Fragment lifecycle ...
1
vote
1answer
583 views
How to get fragment references for Android FragmentPagerAdapter
I'm using a ViewPager with a FragmentPagerAdapter to allow swiping between 2 fragments. I'm not using FragmentStatePagerAdapter because it destroys and recreates new fragment instances when swiping ...
0
votes
1answer
62 views
Adding regular Activitys to ActionBarSherlock tabs
Im using this tutorial as my base code:
http://wptrafficanalyzer.in/blog/adding-navigation-tabs-containing-listview-to-action-bar-in-pre-honeycomb-versions-using-sherlock-library/
I had a project I ...








