Questions tagged [tabview]

Any visual layout that incorporates selectable tabs as an organizational element.

770 questions
2
votes
0 answers

Tabview in Landscape Orientation full screen

I am working on a TabView but I want to show an image that occupies the entire screen and the rest of the content in a normal way. In vertical mode it works correctly but in horizontal mode part of the content bites the notch. How can I correct…
AlbertB
  • 637
  • 6
  • 16
2
votes
1 answer

TabBar and TabView without Scaffold and with fixed Widget

I Created TabBar Without Appbar and Scaffold and fixed Widget above theme. Now when I added TabBarView nothing show in tabs, So I created method that gets Index from TabController and should show the Tabs.But I can not see anything again: …
Sana Ebadi
  • 6,656
  • 2
  • 44
  • 44
2
votes
0 answers

Cocoa - Change tabview with a button from another viewcontroller

I'm learning cocoa swift and i'm stuggling with accessing outlet from my custom NSSplitViewController with NSTabViewController. My goal is to change the tab when I clicked the button from the split view. class CustomTabView: NSTabViewController…
2
votes
3 answers

Add Tabs to Android Application using the layout/main.xml file

I am beginning with Android and I'd like to add tabs to my existing application. Right now I just have one activity with the layout defined in the XML file. I would now like to add other tabs. I have looked it up and found…
houbysoft
  • 32,532
  • 24
  • 103
  • 156
2
votes
1 answer

Change tab height in a TabView?

Is it possible to change the size of the tabs displayed in a TabActivity? I'm currently only putting text in my tabs and I'd really like to minimize the size as much as possible. Also, is there a way to use icons for my activity that aren't 48x48?…
Naftuli Kay
  • 87,710
  • 93
  • 269
  • 411
2
votes
2 answers

Primefaces tabview validation with dynamic tab

I have a p:tabview with dynamic number of tab based on a list and the attribute "dynamic=true". Each tab has some required input fields with…
nguyen anh
  • 21
  • 2
2
votes
1 answer

TabBar setting setting state of tabviews

I have a Main page with a tabbar with 5 tabs. In Main page, i load a JSON from internet and set different parts of it in each tab. It's a world cup app, showing a tab for each match fase (groups, round of 16, quarterfinals, semifinal, and final).…
2
votes
1 answer

android perform action on tab switch

I have got an application which create free sms alerts in one tab and show list of alerts on second tab. List of alerts is fetched from server once I click refresh button see image below. What I want to do is that once I create alert in tab 1 then…
Ayaz Alavi
  • 4,825
  • 8
  • 50
  • 68
2
votes
1 answer

how to connect multiple views to a single tab bar item in swift?

I have a tab bar controller which has two items connected to two view controllers(say A & B) now I want to add a 3rd view controller (say C). But I don't want to add a third icon in tab view. When the user select the second icon it should render B…
Iqbal Inzamam
  • 73
  • 1
  • 6
2
votes
1 answer

YUI3 find current tab in TabView

I'm using YUI3 TabView component, and I'd like to be able to get the index of the currently selected tab. I've been looking through the api docs, but can't seem to find the relevant way to do…
Evert
  • 93,428
  • 18
  • 118
  • 189
2
votes
1 answer

Presenting a custom tab view controller but getting a black screen

My goal is to display a tab view controller that manages multiple tabs that consist of navigation controllers containing view controllers. I set the tab view controller BaseTabBarController as window my root view controller in AppDelegate. My…
Cesare
  • 9,139
  • 16
  • 78
  • 130
2
votes
4 answers

Android : How to create TabLayout with drawable for count textview?

I'm trying to use the new TabLayout in the android design library I wanted to create a TextView having drawable as background on a tab of TabLayout. For example I search Los Angeles in Search box I should get number of Books,Movie,Place in the…
Nikhil
  • 31
  • 1
  • 3
2
votes
0 answers

TabView does not update UI when property "items" gets changed

In my project I make a TabView programmatically and expect it to update its TabViewItem (changing title for example) whenever I set myTabView.items = newArray. Unfortunately, it doesn't work like that. Any help will be greatly appreciated. Here are…
Dean Le
  • 2,094
  • 13
  • 17
2
votes
0 answers

Create Tablayout with ViewPager programmatically

I am reading Tablayout with ViewPager android Tutorial, the attached code works perfect. But I wish to create the UI element programmatically then I no need to use xml layout. So I changed code as below: public class MainActivity extends…
beetlej
  • 1,841
  • 4
  • 13
  • 27
2
votes
0 answers

Android Arsenal NavigationTabBar setting fragments or Activity for models

NavigationTabBar View Pager with Tab. Github Link I want to set Fragments in the viewpager but I'm not getting any far with what I'm doing might be because I'm naive in Android. Though I'm attaching code they used in exapmle application.Though I…