Tagged Questions
0
votes
1answer
25 views
Android - tab functionality implementation using fragments
Actually i implemented the tabs functionality using Fragments. My app having the 3 tabs. At the time of tab creation i set the one fragment for each tab. Suppose currently we are in first fragment of ...
1
vote
2answers
33 views
Android Tabs Content for better User Experience
I have an Activity which has 3 tabs which are Fragments.
Featured
Up Coming
Favorites
Right now my implement when i click a particular tab it downloads the content from the internet and displays ...
0
votes
1answer
23 views
Tabs content is visible on top of another after screen rotation
I have read alot on stackoverflow on fragments issues but I cant find a solution to my problem.
I have a Tabhost and when I change rotation of the device and then select another tab, the view from ...
0
votes
1answer
54 views
use SectionsPagerAdapter with custom fragment
When creating a template project with holo fragments and tabs and sectionsPagerAdapter you get something like this
public class SectionsPagerAdapter extends FragmentPagerAdapter {
public ...
-2
votes
2answers
36 views
Replacement of 'TabActivity' in Android
I used TabActivity for tabs in my application. Now TabActivity is deprecated. So I googled and found that 'Fragment' is the replacement for the TabActivity to create a tabs. Can someone guide me to ...
0
votes
1answer
25 views
DatePickerDialog Fragment Crashing using TabsAdapter and ActionBarSherlock
I'm using a tabs adapter with Fragments and ActionBarSherlock. I want to use a datepicker dialog in one of my fragments, called from an onClick event on one of the buttons. The app is crashing when ...
1
vote
0answers
69 views
View added programmatically to android tab fragment not visible
I'm creating a Fragment Tab which contains a LinearLayout inside a ScrollView, to which I want to programmatically add a new View (aChartEngine chart).
According to the Android documentation:
To ...
0
votes
0answers
33 views
Adding multi-pane screens in a tab
I am developing a tabbed application that supports tablets and smartphones. This leads me to fragment design. However, having had little experience on fragments, I am seeking some feedback.
...
1
vote
1answer
53 views
Fragment not showing on actionBar tab select after orientation change
I can't get fragments to work properly with ActionBar - when I change tab the fragment switches properly. But when I rotate the phone, then remembered fragment shows correctly (depending on what was ...
0
votes
1answer
100 views
Tab Layout in Android with ActionBar and Fragment
When I create separate project to create a Tab layout with actionbar in Android by following this tutorial, it is working fine.
But when I am trying to load Tabbed activity from Main activity by ...
0
votes
0answers
94 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 ...
0
votes
0answers
30 views
Need guidance with how I should go about constructing the code to build these UIs
I've made these two mockups of my main view and the detailed view that comes up when one of the items in the main view gets selected.
Main View : http://i.imgur.com/zdkB81x.jpg
Detailed view : ...
0
votes
0answers
138 views
ActionBar Fragment view with multiple fragments
I have an app with 1 Activity which has 3 tabs created with ActionBar Sherlock. One of these tabs has a ListFragment which is then replaced with other Fragments when an item is chosen.
The problem ...
1
vote
2answers
243 views
Replace fragment in ActionBar Tabs that have swipe view
I did a quick search in here and didn't find any answers for my qustion, if its already answered please point me to that question ..
I have an ActionBar Tabs with swipe views implemented according to ...
0
votes
0answers
109 views
Android tabbed navigation with multiple activities using Fragment
I'm new to Android development and looking for some input regarding the best practices of Android application design as it relates to using Activities.
My application is based on an existing iOS app, ...
0
votes
0answers
70 views
Hide tabs in viewpager
I am using Actionbarshelock library. I have three tabs. each tab contains a fragment. In my middle tab I have sliding drawer. I want to hide action bar as well as tabs from screen so that i can gain ...
1
vote
0answers
344 views
Google Maps v2 MapFragment on Fragment Tab project fails on android 2.3
Hi I have a Fragment Tab project.
When I go to Map tab (a custom MapFragment), It works ok, but when I change to another tab the new fragment appears only at zoom controls of the google maps. When I ...
1
vote
0answers
134 views
Setting up ViewPager in tab fragment
I'm having trouble setting up a ViewPager in android ActionBar Tabs.
I'm new to developing apps and try to get everything work by trial-and-error, but this one is quite difficult.
What I want to have ...
0
votes
0answers
75 views
Back in Android Action Bar tab
My Problem:
I have an app use Tab Action bar with 2 tabs:
Tab 1:
+FragmentA with listview -> FragmentA1 with listview -> FragmentA2
Tab 2:
+FragmentB -> FragmentB1
The problem is when i navigate ...
1
vote
2answers
112 views
How to show ListView in Tab?
I want to display ListView in Tab (after selecting this tab I want ListView to appear),so I have created Fragment class and placed ListView code in it.The main problem now is to pass fragment object ...
2
votes
0answers
66 views
Fragments - Tabs - Progress Dialog
Good evening,
I have implemented an application which has 3 tabs (fragments) using TabsListener.
I am trying to display a progress dialog while I press a specific button on the first Tab-fragment. The ...
1
vote
1answer
547 views
Android navigation tabs: Restoring fragment view state
I'm trying to understand how to preserve fragment view state when fragments are used within navigation tabs. In my efforts, I've come across two problems that I cannot find any proper solutions to.
I ...
0
votes
0answers
161 views
Implementing Action Bar Tabs for an Activity creating a MapFragment
this is a similar question to: MapFragment in Action Bar Tabs but there wasn't a clear answer from this that I understood. I am new to Android and this is my first application Im developing .
I ...
0
votes
2answers
151 views
Android TabsAdapter handle fragments
I want to handle one fragment within tabsadapter which is a static class in my Activity. The problem is how can i get the getfragmentbytag in the onTabSelected?
From the onCreate i have this code:
...
1
vote
1answer
126 views
Navigation between fragments on a tabbed ActionBar
As far as I have been looking around, I have come up with no good final solution for my code. I am trying to implement something like this layout:
ActionBar
----Tab 1 ---Fragment 1 - Fragment 2
...
1
vote
0answers
121 views
Replacing a fragment within a tab. Previous fragment is still active behind the new one
I'm currently have 3 tabs. Each tab on selection be it through swiping or pressing the tab will load a fragment which then inflates a XML layout. I am also using a viewpager along with a ...
-1
votes
1answer
204 views
Conversion to ActionBarSherlock
EDIT: Solution Found! For anyone looking to do the same thing, I found a better tutorial below:
http://comfreek.blogspot.com/2012/06/actionbars-and-tabs-under-android-2x.html
It is very basic and ...
1
vote
1answer
669 views
Android TabListener: onTabSelected - add fragment to back stack
I use in my Android application a TabListener similar to this one: http://developer.android.com/guide/topics/ui/actionbar.html#Tabs
My onTabSelected implementation:
public void onTabSelected(Tab ...
0
votes
0answers
62 views
Where to place the parsing logic/other tab specific code in Android tabs using fragments?
I am new to Android programming and trying to learn the concepts, of course with the help from my fellow Stackoverflow user.
What i am trying to do: After login, i have a home ...
0
votes
0answers
117 views
How to make a button inside a tab fragment to go to another tab that is a fragment?
Ok, I have 7 Tabs and I have 6 Buttons on the first tab. I want to make those buttons go to the last 6 tabs. How would i go about doing that? Here is my Tab1Fragment(Or Main):
public class ...
0
votes
1answer
161 views
addToBackStack() with Fragment's instantiate
I have implemented a Sherlock ActionBar with navigation tabs using a tabs adapter. Below is my tab adapter class:
public static class TabsAdapter extends FragmentPagerAdapter implements
...
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 ...
1
vote
0answers
312 views
Dynamically replacing a fragment in ViewPager with TabsAdapter
I am using a ViewPager in conjunction with ActionBar tabs, as illustrated here. I'm using ActionBarSherlock for backward compatibility, so the parent activity extends SherlockFragmentActivity, and ...
0
votes
1answer
280 views
How to add a TextView outside the action bar tabs
I like to make an application with tabs. There are three tabs in my application with some buttons in each tab. And there are three fragments also. I like to display some text in to a common TextView ...
0
votes
1answer
45 views
android fragments flapping during app startup
Why would my Fragment be flapping during app startup?!?
02-10 11:41:34.699: D/SessionDetailFragment(19272): onResume() 99
02-10 11:41:34.699: D/MPQAudioFragment(19272): onResume() 00
02-10 ...
0
votes
0answers
94 views
Not able to load a tab with fragment when the button is clicked
I'm using ActionBarSherlock and i'm showing an hiding fragments when a particular tab is selected.But i ran into trouble when i tried to show a fragment which is tied to a particular tab when a button ...
1
vote
2answers
177 views
Android - Fragment inside a fragment - Preserve state
I am trying to have tabs fragment inside a swipe view fragment (named BROWSE). When BROWSE is accessed, a connection to a remote server is done, data is retrieved and displayed in a gridview inside a ...
2
votes
1answer
167 views
Android Fragment Tab Pager Jerk Issue
I am using ViewPager with TabHost to change fragments with tab touch/swipe effect. But the problem is, I am getting Jerk between fragments transition while swipe gesture. What could be the problem? I ...
0
votes
0answers
197 views
Actionbar tabs shows the same fragment after replace
I have a gui with 3 tabs (News, Strategy and History), in one of them (News) i load an ExpandableListView and when the user clicks in one of the items from the list, it loads another fragment containg ...
0
votes
1answer
222 views
Replacing Fragment in tab, changes all tabs
EDIT
I edited the previous question, wich i solved. Thanks a lot for the replies.
I have a gui with 3 tabs (News, Strategy and History), in one of them (News) i load an ExpandableListView and when ...
0
votes
0answers
351 views
Refreshing listview in fragment tabs
I have to tabs, both containing listviews. I am parsing data and putting them into listview through lazy loading. I was succefull in doing that. However I am face an issue. After loading data into ...
0
votes
1answer
126 views
Use fragments or activities inside a tab navigation?
I have an app with 4 main tab fragments. However, inside each tab, the user can do different actions which brings him to navigate inside that same tab. Should I launch new activities or just replace ...
0
votes
1answer
270 views
Android: Adding tabs dynamicly with ActionBarSherlock
I successfully made a project with tabbed navigation, and I can add new tabs from onCreate(), but I want to add new tabs from a button(inside a fragment I'm generating dynamically).
The Fragment ...
0
votes
1answer
254 views
How to change ABS tab from button click without using TabHost?
I am starting out and this is my first post. Any help will be greatly appreciated!
I have successfully implemented tabs with ABS. I would like to change tabs and reload the fragment activity from a ...
3
votes
4answers
624 views
Fragment disappears from backstack
Why does FragmentTwo disappear from the backstack in the following situation:
My app has a Fragment called FragmentOne in an Activity.
FragmentOne holds a Button. When clicked, it launches ...
0
votes
0answers
189 views
Android - Fragment tab content gets appended on every resume
I have few tabs in actionbar implemented via fragment. On tab selection, respective content gets displayed. However, I have one issue
On click of a particular field in tab, a pop-up occurs. Once ...
0
votes
0answers
188 views
ActionBar Custom Navigation with Fragments and RadioButtons
I am trying to create a custom navigation view using actionbarsherlock similar to the sample code found here:
...
0
votes
1answer
332 views
How to replace a Fragment under LinearLayout in Tabbed application
I have a tabbed application with 3 xml layout files.
The fragments are created programmatically and added to the LinearLayouts.
However, one of the LinearLayouts looks like this :
map.xml
<?xml ...
3
votes
2answers
1k views
Android > 4.0 Fragments and Tabs
I am really lost here.
I want to make an app that will have tabs ( fragments? ).
So whenever a user clicks on a tab, a new fragment is loaded.
The UI would be similar to the one under View Control ...
0
votes
3answers
2k views
FragmentTabHost bottom TabWidget
Hello How I can create bottom TabWidget in FragmentTabHost ?
My xml looks line this:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
...
