Questions tagged [tabview]

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

770 questions
1
vote
2 answers

Tabs at bottom with mapview on top

Hey people out there.. Im working on making a application with tabview where in one of the tabs is mapview embedded to. Buut i want the tabview to be at bottom and not on top, when i set the gravity or layout_marginBottom to true it disappers, and…
Mustii1989
  • 29
  • 7
1
vote
1 answer

I want to be able to swipe left and right in an Android TabView to switch between tabs

Possible Duplicate: Swipe to switch tab selection I am trying to implement a TabView in Android where the user can swipe left or right to change tabs. This is similar to Google Music where the tabs (ie. music, artists, genre) are at the top and…
1
vote
0 answers

App crashes on selecting Spinner in a website openend in a WebView within the App

I have a WebView in one of the tabs in TabView. The webView loads a specific url which contains a spinner. The action listener and spinner is triggered from the server side embedded in the url. webview = (WebView) findViewById(R.id.webview); ....…
1
vote
3 answers

Open another activity from inside the tab activity

I created a tabbed application in which I have three tabs. In the first activity I am opening a class named Home.class and inside the Home.class I want to start another activity that should open in that tab itself is it possible. Please help.
James
  • 13,891
  • 26
  • 68
  • 93
1
vote
1 answer

How can I add a 'pinned' view above a TabView's tabs?

Using SwiftUI, how can I achieve something like the Apple Music app? they have a now playing bar that is visible across all tabs. Is this something I can recreate using SwiftUI? I have tried using overlay: TabView { NavigationStack(path:…
Halpo
  • 2,982
  • 3
  • 25
  • 54
1
vote
0 answers

TabView VideoPlayer video freezes

I'm trying to use SwiftUI to create an album in which you can scroll through the video. Faced the problem when returning to the previous video the player control panel shows that the video is still playing but the changes are not…
1
vote
0 answers

How to preview an image in TabView in SwiftUI?

I am currently working on a Zodiac Signs app in SwiftUI, and I want to display the next and previous images of a zodiac sign in a row and enable sliding to them. Here is the code that displays the current zodiac sign image using a TabView with a…
1
vote
0 answers

SwiftUI TabView indexDisplayMode issue

I wanna hide TabView indicator but when I set indexDisplayMode: .never but I can't see Views under TabView. TabView(selection: $selection) { ForEach(0..<5, id: \.self) { index in …
Ufuk Köşker
  • 1,288
  • 8
  • 29
1
vote
0 answers

How to use nested renderItem function one inside another

have to use two renderitem function,outer one is of the tab-view and innerone in related to flatlist.Is the possible to achieve this.I am having array of clickables in tabview and again having clickable in the form of flatlist. const renderItem =…
1
vote
0 answers

How to achieve nested data rendering on UI,data loading according to the click

I am new to react native,trying to implement the double data filtration based on the click on the buttons.I able to achieve the first level of filtration of data but facing issue in second level. For the first level I am using the dynamic-tab-view…
1
vote
1 answer

How can I make a toolbar with page indicators in SwiftUI like the Weather App?

In SwiftUI, I am trying to place page Indicators on top of a bottom toolbar, but have not come to a resolution. Paging Indicators Right now, I have a tabview that organizes Views 1-7 horizontally, but the page indicators are on its own island at…
1
vote
2 answers

How can I make a bottom sheet appear behind a tabView?

Does anyone know how I can create a bottom sheet similar to the one in the Diary Queen app. I have tried a few times but every thing I've tried has made the bottom sheet appear above the bottom tabview. I need it to appear from behind the tabview…
k.arias
  • 11
  • 2
1
vote
1 answer

SwiftUI TabView repeats first entry

Xcode RC 14.1 The first tab is generated twice. The first one works, the second brings up a blank screen. This has been reported elsewhere on SO and people suggest removing Spacer()s but this made no difference. The code below has two variants, one…
Edward Hasted
  • 3,201
  • 8
  • 30
  • 48
1
vote
0 answers

React Native UI Kitten: Difficult to click component

I'm using UI Kitten in my React Native app, and it's difficult to click. It seems as though only a tiny fraction of the tab at the bottom is actually clickable. My code is: import { Layout, Tab, TabView } from…
gkeenley
  • 6,088
  • 8
  • 54
  • 129