'fragment' is an ambiguous tag, used to refer to numerous technologies. Prefer less ambiguous tags.

learn more… | top users | synonyms

10
votes
2answers
1k views

Replace Fragment inside a ViewPager

I'm trying to use Fragment with a ViewPager using the FragmentPagerAdapter. What I'm looking for to achieve is to replace a fragment, positioned in the first page of the ViewPager, with another one. ...
9
votes
2answers
3k views

Tabs in Android using Fragments

I'm trying to implement tabs for navigation in an Android app. Since TabActivity and ActivityGroup are deprecated I would like to implement it using Fragments instead. I know how to set up one ...
8
votes
3answers
4k views

Android: Saving Fragment state in ViewPager?

I tried out the sample code from the API http://developer.android.com/resources/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.html and it didn't really work so I ...
7
votes
1answer
203 views

Show fragment as a dialog or as a usual activity

In my app I've got a fragment which is called "About". On handhelds I want this fragment to look like a usual activity but on tablets I want it to be a dialog. Which way is preferred to handle this ...
6
votes
1answer
367 views

IllegalStateException when replacing a Fragment

It's small Android 2.2 test application using the Compatibility Package. This is the (wrong, of course) way I try to replace a Fragment when receiving a click. I'm trying to replace it with a new ...
6
votes
2answers
165 views

why should we go in eye-space coordinates during fragment stage in the OpenGL pipeline?

I'm currently programming a small 3D engine, and I was wondering why I should go in eye-space coordinates in the fragment shader. To do that, I have to put my camera matrix in a uniform to convert ...
6
votes
3answers
272 views

OpenGL Shading Language Different Types of Variable (Qualifiers)

I've been writing programs using OpenGL. Recently, I started learning OpenGL Shading Language. I'm a newbie; so please be detailed in your answers. My questions are: 1. What are different types ...
6
votes
1answer
530 views

HTML position:fixed page header and in-page anchors

If I have a non-scrolling header in an HTML page, fixed to the top, having a defined height: Is there a way to use the URL anchor (the #fragment part) to have the browser scroll to a certain point in ...
6
votes
5answers
2k views

Best way to combine fragment and object caching for memcached and Rails

Lets say you have a fragment of the page which displays the most recent posts, and you expire it in 30 minutes. I'm using Rails here. <% cache("recent_posts", :expires_in => 30.minutes) do ...
5
votes
4answers
2k views

WiX(v3): Harvesting a .csproj with heat.exe in vs2008?

The Question Newly initiated into WiX, I researched and found that v3 uses a tool (heat.exe) to "harvest" information into WiX fragments. I have managed to stumble about and find information on this ...
4
votes
3answers
2k views

Android: Viewpager and FragmentStatePageAdapter

I'm designing an app that allows users to flip between multiple pages in a ViewPager. I've been struggling trying to figure out how it is possible to remove a Fragment instance from a page when it is ...
4
votes
2answers
1k views

Get the current fragment object

In my main.xml I have <FrameLayout android:id="@+id/frameTitle" android:padding="5dp" android:layout_height="wrap_content" ...
4
votes
1answer
317 views

How to call fragment from another fragment.?

I already make fragment in android. but my problem is that, i want to open another activity in same fragment on button click event and button is inside an fragment class. so how can i? please somebody ...
4
votes
2answers
734 views

Fragments onResume from back stack

I'm using the compatibility package to use Fragments with Android 2.2. When using fragments, and adding transitions between them to the backstack, I'd like to achieve the same behavior of onResume of ...
4
votes
3answers
2k views

findViewById in fragment android

I am trying to create a imageview in a fragment which will refer to the image view element which I have created in the xml for the fragment. However, the findViewById method only works if I extend the ...
4
votes
1answer
454 views

HtmlUnit and Fragment Identities

I'm currently wondering how to deal with fragment identities, a link that I am wanting to grab information from, contains a fragment identity. It seems as if HtmlUnit is discarding the "#/db4mj" of my ...
3
votes
1answer
37 views

Ok to update fragments instead of creating new instances?

In the example on using fragments in the Android docs, when the application is in 'dualview' mode, the details fragment is recreated whenever the application needs to show details for a different ...
3
votes
2answers
129 views

Is it possible to access the current Fragment being viewed by a ViewPager?

I have an app with a ViewPager and three Fragments. I'm trying to figure out how to get the current Fragment being viewed so I can get at its arguments. I have an OnPageChangeListener grabbing the ...
3
votes
3answers
214 views

Fragment's onSaveInstanceState never called

I'm trying to save data in a Fragment's onSaveInstanceState, but the method is never called. Anybody can help? public class MyFragment extends Fragment { @Override public View ...
3
votes
2answers
149 views

How to dismiss a DialogFragment when pressing outside the dialog?

I am using a DialogFragment, and while I have successfully set an image to close (i.e. dismiss) the dialog when pressed, I am having a hard time finding the way to dismiss the dialog when the user ...
3
votes
2answers
230 views

Any simple examples using roboguice with fragments in android?

I'm having issues finding a working example of using fragments + RoboGuice. The problem happens when you attempt to add/remove fragments with the Android fragment transaction manager. Once you tell ...
3
votes
1answer
124 views

Unit Test an Android Fragment

I want to unit test an Android Fragment class. Can I set up a test using AndroidTestCase or do I need to use ApplicationTestCase? Are there any useful examples of how these two TestCases can be ...
3
votes
3answers
224 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 ...
3
votes
1answer
117 views

Highlight selected header in preference-headers

I'm using the new preference-headers to show the settings in my application. While the standard settings activity on my Motorola Xoom shows the selected item in the header list with a blue background, ...
3
votes
2answers
296 views

How to Override LongPress in ListFragment?

I have a ListFragment Activity. I want to create a method for onItemClickedLongPress, so that when the user does this. a menu pops up. I am familiar with creating the menu. So if some one would ...
3
votes
3answers
1k views

reusing fragments in a fragmentpageradapter

I have a viewpager that pages through fragments. My fragmentpageradapter creates a new fragment in the getItem method which seems wasteful. Is there a fragmentpageradapter equivalent to the ...
3
votes
1answer
623 views

Problems with alertdialog show in fragment android

I have followed android example but I have an incomprehensive error : void showDialog() { DialogFragment newFragment = MyAlertDialogFragment.newInstance(); newFragment.show(fm, "alert"); } ...
3
votes
3answers
968 views

FragmentActivity Junit Testing

Me used Fragment of Android Compatibility Package, using the android-support-v4.jar. But I can't do the JUnit test on this. My main FragmentActivity class is declared as follows public class ...
3
votes
2answers
3k views

Fragment already added IllegalStateException

I use this method on my container Activity to show a BFrag public void showBFrag() { // Start a new FragmentTransaction FragmentTransaction fragmentTransaction = ...
3
votes
1answer
602 views

Android: Can you nest Fragments?

Is it possible to stick a Fragment in the layout of another Fragment? Has anyone tried this?
3
votes
4answers
114 views

What does the following code fragment (in C) print?

int a = 033; printf("%d", a + 1); Thank you for your consideration of this matter.
3
votes
3answers
223 views

Is there such a thing as a valid HTML5 fragment?

I obviously can't determine whether a fragment of HTML is valid without knowing what the rest of the document looks like (at a minimum, I would need a doctype in order to know which rules I'm ...
3
votes
2answers
1k views

Can you have multiple pixel (fragment) shaders in the same program?

Hopefully this is an easy question. I like things being organised, so I would like to have two pixel shaders; the first doing one thing, and then the next doing something else. Is this possible, or ...
3
votes
3answers
6k views

How to calculate gl_FragCoord in glsl

Ok, in my glsl fragment shader I want to be able to calculate the distance of the fragment from a particular line in space. The result of this is that I am first trying to use a varying vec2 set in ...
3
votes
0answers
52 views

Switching from TabHost to Fragments with Viewpager: Where to put all my Code

So until now i've used TabHost for my App to create 3 Tabs. Each Tab is represented by an Activity in which i get the layout via setContentView(R.layout.something) from an XML file. So 3 Tabs, 3 ...
2
votes
1answer
50 views

Custom attributes in Android fragments

I'd like to define custom attributes in Android fragment using XML (without using bundle additional parameters) like declare-styleable in custom controls. But there are no constructors with AttrSet ...
2
votes
1answer
115 views

Start activity in tab using fragment

I have tab activities (tab1, tab2). When button1 is pressed in tab1 activity it covers up the whole screen. How to start another activity in the same tab? Is it possible to start ...
2
votes
1answer
336 views

Android deprecated tabactivity, when will this no longer work

when will the deprecated tabactivity no longer work in future versions of Android? I am asking because Android is open source so someone in the dev community might be lurking here for designs that I ...
2
votes
0answers
65 views

How to run or start application inside the fragment of Android?

I want to launch any existing app of device inside a fragment. Can anyone please help me how can I do this. Thanks & BR, Pawan
2
votes
1answer
285 views

FragmentTransaction .attach and .detach for Actionbar tabs

I'm trying to get the code here to work. It compiles fine. It will run. And it will load tab 1 (of 3). However, when I click on the 2nd or 3rd tab, I get this: java.lang.NoSuchMethodError: ...
2
votes
3answers
438 views

android: How to make a tab flip like android market?

i wanna rewrite my app to fragment api, TabHost is deprecated so i've found ViewPager, but how can i make a tabbar like android market? (android market use viewpager and a bar). Superuser 3 use this ...
2
votes
4answers
143 views

How to call from supper-class method in subclass?

How from class BasicActivity call method stackAFragment from subclass Sub? I want to have an opportunity to replace Fragment in my Activity Sub from any Activity that extends BasicActivity by using ...
2
votes
1answer
185 views

How to determine fragment restored from backstack

Been searching for this issue for a while to no avail now: How to determine fragment is being restored from backstack? I'm using the compatibility library and a ListFragment inside a ...
2
votes
1answer
177 views

Honeycomb Gmail Like Application

does anyone knows (or can show me an exemple) of how can I develop an aplication that behaves just like honeycomb gmail? How can I swop between frame layouts and change their sizes to display ...
2
votes
1answer
405 views

Android: When is onCreateOptionsMenu called during Activity lifecycle?

I put a couple of breakpoints in onCreate (one at the beginning, and one at the end of the method), and I also put one at the beginning of onCreateOptionsMenu. The onCreate method is called first, and ...
2
votes
1answer
210 views

Design pattern for fragments in android

I am reading a book and it says like this "Right now, fragments are very new, so there are few well-established patterns to follow" But I do not know where to read more about the design patterns for ...
2
votes
2answers
247 views

onLoadFinished not called after coming back from a HOME button press

When using a custom AsyncTaskLoader to download data from a web service, if I press the HOME button in the middle of the loading process and then enter the app again, the onLoadFinished() method is ...
2
votes
1answer
153 views

OpenGL ES 2.0. GLSL - cannot use two sampled colors at the same time in fragment shader

I don't even really know how to describe this problem, so I will try to explain with code. I have a fragment shader that does parallax mapping and lighting computations. I've managed to trace the ...
2
votes
1answer
927 views

onCreateOptionsMenu not being called on FragmentActivity when run on phone version

I create an app that supports both phone and tablet version so i use the android-support-v4.jar library. My activity extends the FragmentActivity and override the onCreateOptionsMenu(Menu menu). This ...
2
votes
3answers
1k views

Fragment not receiving menu callbacks

I have a fragment class that extends Fragment and calls setHasOptionsMenu to participate in the menu. This class also implements onCreateOptionsMenu, onPrepareOptionsMenu and onOptionsItemSelected. ...

1 2 3 4 5 6