3
votes
1answer
50 views

Are Fragments and Fragment Activities inherently faster than Activities?

Are Fragments and Fragment Activities inherently faster than Activities? If I don't need to load my activity in fragments, should I be using FragmentActivities and Fragments over Activities? Reason ...
0
votes
0answers
31 views

Implement existing Activity(within there extends/implements) in Fragments (Sherlock)

I have developed an app with some activities. Now I would implenent a Navigation with fragments and Sherlock. I found a lot of examples, but I don't know how to implement my exiting activities. Since ...
2
votes
3answers
69 views

Wrap Activity in a fragment, or an alternative solution

I have a kinda big, already published railway schedule app published on Google Play, and now I am planning to integrate bus schedules as well. My question is something like this: At the moment, ...
0
votes
2answers
56 views

Passing pointer to Activity to next Activity

I'm very new to Android programming (and Java for that matter) coming from an iOS background. What I am trying to do, is pass a pointer to a Fragment from one Activity to another. Basically, I have a ...
0
votes
1answer
59 views

Load activity as fragment

I am using few Activites in Android application. Now I want to use Menu kind of stuffs. I know that I can use fragments to do that and I can use below code to load the Layout. @Override public View ...
0
votes
0answers
99 views

Failure delivering result ResultInfo in Action Bar Sherlock, Facebook

I'm using the Action bar sherlock library in my application and I currently have one two tabs as fragments: Tab A : Users views information in a list Tab B : Users can log into facebook I need the ...
2
votes
2answers
79 views

Do I need to remove programmatically added fragment

I have programmatically added fragment which is created on activity's onCreate() call like this: mFragment = (MyFragment) pFm.findFragmentByTag(TAG); if (mFragment == null) { ...
0
votes
4answers
61 views

How to communicate with activity after long task because activity was destroyed

I have created simple application with login feature. I have created separate task for do the login into server called LoginTask and a listener class called LoginListener. public interface ...
0
votes
0answers
97 views

Android - Fragment view OnKey method not called when there is more than an item

I don't understand this: I have a ListFragment which must show a list of products and categories, when I enter a category a TextView over the list should show the actual category. I also need the back ...
0
votes
1answer
254 views

Passing data from Activity to Fragment using Otto

In my application I'm adding Fragments dynamically to the container in main activity view. I would like to know what is the best way to pass data when using Otto when we add Fragment. Currently this ...
0
votes
1answer
287 views

Activities vs Fragments for static menu bar

I've developed like 5 Android applications using only Activities (and from time to time Fragments for ViewPagers for instance). I have to develop a new application targeting Android ICS for tablets ...
0
votes
1answer
41 views

how to maintain focus between two screen component?

In my two screen app first screen has some button, from here control jump to other activity. Now when control return to first activity from second, how can focus for last action item? Also please ...
0
votes
0answers
54 views

both activies and fragments in action bar tab Android

Is it possible to use both fragments and activity in the ActionBar's tab? It is very important to keep backstack. Of course I know classical solution for fragments only: class MyTabsListener ...
1
vote
2answers
326 views

editTexts changing their value when rotating the device

The Context My application architecture is very similar to the default called "Swipe Views" when you create a new android project. One activity, 3 Fragments, you can swipe through them. It uses the ...
1
vote
1answer
2k views

Cannot call getSupportFragmentManager() from activity

I have an activity which has a fragment. XML: <fragment android:name="com.example.androidcalculator.ResultFragment" android:id="@+id/result_fragment" ...
0
votes
0answers
116 views

Changes for MultiPanel Tablet layout - how to reduce to one Activity?

I am working on a project which should be able to show Multi-Panel layouts for tablets. Currently fragments are used, but still there are a lot of activities. MultiPanel layouts require that there is ...
0
votes
2answers
2k views

Activity to SherlockFragment

I want to change my app ( extends Activity ) to Fragment ( extends SherlockFragment ) If I change it I have much errors; public class AlarmClock extends SherlockFragment implements OnClickListener { ...
0
votes
0answers
614 views

Android: back to SherlockFragment from SherlockActivity

I'm opening a SherlockActivity coming from a SherlockFragment. Now I want to build an Actionbar with a back button. That works: public void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
1k views

add tab host with activities inside fragment

Good day. I have some problem. I have app with listview at left and detail view at right. In right view I have a fragment with tab host. But I also want to add activities for all tabs. For example: I ...
0
votes
0answers
132 views

How yo make a dynamic fragment in View Pager

Can the ViewPager show the same fragment but having different content in each transition ? for more information, the fragment can display information upon a given data, so how to pass a data to ...
9
votes
7answers
2k views

One Activity and all other Fragments

I am thinking of implementing one screen with Activity and all other sreens with Fragments and managing all the fragments thru the activity. Is it a good idea? and my answer is NO but still I want to ...
0
votes
3answers
490 views

NullPointerException when i tried to get Extras in FragmentActivity

i have a problem to pass extras between an Activity and a FragmentActivity. This next code create the Intent to start the new Activity: Intent fichaSerie = new ...
0
votes
0answers
397 views

android: On refresh of an activity, fragments(list fragment & detail fragment) in it are getting dettached

In the app - I have a header with refresh button & in the bottom I have 5 tabs, some tabs have activity with fragments & some have just the activity. Fragments are added to the activity ...
2
votes
4answers
2k views

Action Bar Tabs without using Fragments?

It is maybe quite a newbie question but anyway. Since Tabhost is depreciated I tried to switch to the action bar tabs but I have my problems using fragments. Is there a possibility to use activities ...
3
votes
2answers
1k views

Why is TabActivity deprecated (reason)?

This is not a duplicate of Why is TabActivity deprecated? After some research the conclussion is that TabActivity is deprecated because we now have to use fragments. And the reason for that, as far I ...
2
votes
1answer
495 views

Android: Design Patterns for Action Bar/Options Menus on Multi-Pane Layouts

From Android Best Practices API Guide: Supporting Tablets and Handsets: In some cases, you may have one APK to support both a phone and a tablet. Suppose on a phone you have a ListFragment that ...
0
votes
1answer
300 views

Going back to my main activity, and refreshing the fragments

So, my application have one activity ProjectActivity as a home, which contains 3 fragments HomeFragment ListFragment TagFragment(one for each tab). When I click on a button (on the homeFragment), it ...
0
votes
3answers
723 views

onActivityResult is newer call in nested activity

I have the next UI hierarhy: FragmentActivity -> Fragment with TabHost and LocalActivityManager -> MyNestedActivity MyNestedActivity places in single tab in Fragment. When I call ...
0
votes
2answers
171 views

Switching back and forth between 2 layouts

I'm trying to make an application thats has blinking effect, e.g. switching back and forth between 2 layouts, one is red and the other is blue for example. (any layout has diffrent image in it) ...
1
vote
2answers
1k views

Can't replace a fragment by another one

Even though I've been reading other topics about my kind of problem, I can't figure out the reason of my problem. I have an activity where there is on the left a ListView. On the right is a ...
4
votes
1answer
1k views

Fragment Management Best Practices for Multiple ListFragments

I am planning on having 3 fragmentlists contained within one activity. The goal is you select the talk option from the first list, then it transitions to the run list based on what you clicked in ...
0
votes
2answers
688 views

App crashes when screen locked

I get an error "Unable to pause activity" in the logCat. I have a ViewPager with 3 pages which contents are fragments. Theres a NullPointerException report. Problem seems to be in the MainActivity ...
0
votes
1answer
936 views

How to put an activity into a fragment?

I have a ViewPager with 3 pages. In each page, I would like to insert a listview which is populated in seperate classes. Now, I found the simplest method is by inflate layouts which has a fragment in ...
1
vote
1answer
844 views

Set activity as content in swipey tabs?

So I found this great example of the implementation of Swipey tabs (the tabs UI like in the Android Market). Is it possible to set an activity as its content? Is there anything like an "Activity ...
43
votes
4answers
18k views

Starting Activity from Fragment causes NullPointerException

I'm stuck here with a problem starting an activity from a Button inside a Fragment. Here is my code: ViewPagerAdapter.java import java.util.List; import android.support.v4.app.Fragment; import ...
22
votes
4answers
6k views

When a Fragment is replaced and put in the back stack (or removed) does it stay in memory?

Is the behavior similar to the way Activities work? For example with Activities it works like this: Activity A starts Activity B, while B is on screen, the system is able to remove A from memory if ...
3
votes
2answers
1k views

Android: AlertDialogs and Fragments

I'm switching one of my applications over to fragments (from just activities) and either I'm totally missing something or they have severely complicated the whole process of showing an AlertDialog. ...
1
vote
1answer
719 views

Changing an activties content view based on actionbar tabs

I am wondering if this can be done. Basically I have a layout with 2 fragments in it that I use for most of my tabs but on 2 of the tabs I want to add a couple more fragments to display more things. ...
3
votes
3answers
730 views

Fragment with compatibility pack and > honeycomb

I have to write an app for both phones and tablets and I would like to use the same project for both. It seems the use of compatibility library is good to write reusable code. Is possible to share ...
1
vote
1answer
548 views

Fragments and right design

Sorry if the question was not clear. In my app I have 3 tabs on acion bar, further each of the tab has a separate xml layout with two fragments. For first two tabs the layout is similar, but the third ...
6
votes
1answer
1k views

Transaction between fragments only inside one ActionBar Tab

I have an app with three tabs (ActionBar Tabs), each one with one fragment at a time. TabListener TabsActivity Tab1 -> ListFragment1 -> ListFragment2 -> Fragment3 Tab2 -> Tab2Fragment Tab3 -> ...
3
votes
3answers
732 views

Why is NPE thrown when finishing Activity?

I have an error that has been driving me crazy for days. Unfortunately, I can not show you the code for two reason, my boss will not appreciate it and the codebase is too large to share. The error ...
2
votes
1answer
1k views

Orientation change using fragments - wrong activity start

I have application which uses fragments. Depending on screen size and orientation I'm displaying different layouts:1. layout-fragment - list of choices2. layout-fragment - display selected choice I ...
2
votes
2answers
3k views

Fragments - Do you have to use an Activity Wrapper around a fragment which comprises the whole Activity?

Consider the sample app from developers.android.com This describes using Fragments like so: On a Phone you can use Fragment 1 on Activity A and fragment 2 on Activity B. On a tablet you have more ...
28
votes
3answers
17k views

getActivity() returns null in Fragment function

I have a fragment (F1) with public method like this public void asd(){ if(getActivity()==null){Log.d("yes","it is null");} } and yes when I call(from the Activity) it it is null... ...
7
votes
1answer
647 views

What is the 'best practice' for changing from 'Activities' to 'Fragments' for Android applications?

I am writing an application for Android platform. The application is already almost written for 2.x version, but I want to make it also for Honeycomb version. As you know, Honeycomb has 'Fragments' ...
2
votes
4answers
3k views

Retain Fragment state between Activities

Its possible to retain a Fragment between Activities? Lets say I have Activity A with Fragment F_Left placed at the left and Fragment F_Right placed at the right. If I want to launch a new Activity ...
12
votes
1answer
977 views

Porting a 100 Activities app to Fragments without dying

I have developed a huge app for a bank. This app gives the user the ability to perform a big bunch of operations through the phone (national & international transfers, securities, stock market ...
9
votes
1answer
2k views

How Fragments affect the Activity “single, focused thing that the user can do” principle?

As Android documentation states: "An activity is a single, focused thing that the user can do." However with Fragments we will be able to do many "things" within the same Activity as Reto Meier ...
4
votes
1answer
2k views

Menu Ordering differences due to Fragment and Activity hierarchy. (onCreateOptionsMenu)

Background Developing for Android 3.0, I have a HostActivity that is the superclass of NotebooksActivity and NoteActivity. NotebooksActivity includes a fragment, NotebooksFragment. In HostActivity, ...

1 2