I have a tab bar in my application. In this I have three tabs. It will call three activities. In activities I have the list view. If I click the list view, it will call different activities other than tab activities. Can anybody tell me how to display the tab bar for other activities and give an example?
Thanks in advance
First, do the tutorial. Then, if you are still having problems, ask more specific questions.
Good Luck
https://github.com/yifanz/Android-Custom-Tabs/downloads
hope this will help you. making iphone like tab bar for android...
Related
I'm right now working on a launcher app and I have three Activities. User is on 2nd Activity by default and when user swipes left it should take him to 3rd Activity and when user swipes right it should take user to 1st Activity. Just like Swipable Tabs but the Tabs should not appear. Is it possible? Best example is of Home Screen, I want it exactly as Home Screen. I've tried a lot! But I'm not getting what ACTUALLY I want, any help would be gladly appreciated, thanks!
I hope I can get you well.
First personally I don't suggest achieving this goal by using multiple activity. A better way might be one activity containing multiple fragment.
Then if you do so, several tools can make help, ViewPager for example.
If you want to add some view page indicator, as what the homescreen looks like, then ViewPagerIndicator might be a good choice.
Hope it helps.
I am done with adding Action Bar and swipe able Tabs but now I want to add a fragment above the tabs which occupies good amount of screen and contains an image some text details and a spinner/drop down list as well. How can I do that?
I could not find any method for doing this. Some conflicts arise if i try to add something above the tabs.
Any help will be appreciated. Thank You
Download this example and modify according to your requirement
https://github.com/AsadSoomro/SlidingTabs/
I need to implement iphone like tab in android. Which means, if there are more than 5 tabs are there the 5th tab text must show "more"? How can I implement this? Is it possible to do so in Android? Please help me. Thanks in advance
As far as I know, it's not possible. You can however implement a scrollbar for the tab widget, so if you have more than a number of tabs and they don't fit the screen, it won't show a 'More' tab, but you can scroll to the rest. For more info about this, check this link.
I totally agree with #yugidroid but sometimes it's hard to explain this to designer :) So you will need to implement that attitude of tabs by yourself, it is possible though.
You can check out my repository on github to have an idea where to begin. You can do it by modifying that actually...
You can add this to your activity:
tabLayout.setTabMode(TabLayout.MODE_SCROLLABLE);
After adding this you can have how many tabs you want.
I am having 3 tab in the tab bar.I would like to have an access when we we click the first tab it need load the Activity 1<->Activity 2 <->Activity 3 <->Activity 4.How to get this,any examples on this will be helpful. I have tried all other examples with single activity but when I try to call the multiple activities no luck on it.Thanks
As I got from your question is that your requirement is to have Sub-Activity inside a Single Tab. You can use ActivityGroup for that, but now it is deprecated you can use Fragments Compatibility Package which works from 1.6 version too. So, here is an example for that FragmentTabs.java
Does any one know how to create horizontal tabs with all the tabs being loaded in the same page, i.e. when each tab is select it should be loaded in the same page without cal several activities can it be done in within a single activity use & the horizontal tabs list should not be disturbed in any case when any of the tabs are selected, friends i am need your help in this part if anybody has a code please do share,thanks in advance.
I'm not really sure if I understand you right,but here is a link to TabWidget demo which you can use to create horizontal tabs.And about the other part of your question you can use ActivityManager for this purpose.Hope it helps.
If this answer don't quit to your question, please provide some more details or examples.