Questions tagged [swipeview]

SwipeView is a class designed to simplify the implementation of horizontal, paged scrolling views on iOS.

SwipeView is a class designed to simplify the implementation of horizontal, paged scrolling views on iOS. It is based on a UIScrollView, but adds convenient functionality such as a UITableView-style dataSource/delegate interface for loading views dynamically, and efficient view loading, unloading and recycling.

Information:

Download

184 questions
1
vote
3 answers

cannot find symbol method getSupportActionBar()

I know this question has been posted plenty of times, but I still unable to solve even i have tried many solution from Stack Overflow. import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import…
John
  • 684
  • 11
  • 35
1
vote
1 answer

TabMain is not abstract and does not override abstract method onTabReselected(Tab,FragmentTransaction) in TabListener

Good day guys. I'm trying to build a simple app which support tab layout with a swipe view feature. I follow this tutorial but no success. package com.example.project.project; import android.os.Bundle; import…
John
  • 684
  • 11
  • 35
1
vote
1 answer

Swipe to go back not working for iOS app

I am trying to allow the "Swipe to go back" feature found in iOS 7+, but it isn't working in my app. I have added nc.interactivePopGestureRecognizer.delegate = (id)self; [nc.interactivePopGestureRecognizer…
Greg Henlow
  • 23
  • 1
  • 5
1
vote
1 answer

How to create swipeable views in android?

I want to create a swipeable views in android. My aim is to achieve this effect. Here, on swiping right i want to change only image source, background image should be fixed. How can this be achieved?
Anand Barnwal
  • 303
  • 3
  • 14
1
vote
0 answers

Android Swipeable tab view error after moving from the first tab the 2nd time

I am a newbie to android. I am trying to implement Swipeable tab views. Have created 3 tabs : 1. Summary 2. Stats 3. Maps Now the thing is the tabs are working fine. When I move from Summary->Stats, it is fine. Stats->Maps, Maps->Stats is also fine.…
TechFrk
  • 185
  • 2
  • 2
  • 15
1
vote
1 answer

Swipe Views with Tabs : Activity or Fragment?

I'm trying to code a swipe views with tabs (3 tabs). I want each 'page' to be an Activity. I'm using the code in this tutorial, but unfortunately each 'page' there can only be a Fragment. What i tried to do is to transform my Activities into…
1
vote
1 answer

how to change view with swipe titanium appcelerator

hello i have a problem: I have two views in a window and I wish with a swipe event is passed from one view to another as if it were a tabgroup. Can anyone tell me how is it possible ? thanks so much
1
vote
1 answer

Android Tabs with overlaying / overlapping Image

i have a conceptual android question. I use the appcompat library (API min:15, target:21). And want to place an image over the Top-Tabs (or even within) and the content below. (Content could be a swipeView) Like this: Important is that the image…
1
vote
3 answers

Android Studio: Creating a Swipe Tab Application that Reads Fragments. Forced Close

I'm essentially a new Android Studio developer and currently I am attempting to switch between 3 tabs for my program. Unfortunately, the program forces a close when I try to open things up. I'm not entirely sure where the problem lies since I…
The Radio Guy
  • 11
  • 1
  • 4
1
vote
2 answers

Android using custom view PullToRefreshSwipeListView

I am trying to use both PullToRefresh and SwipeListView libraries in listview using PullToRefreshSwipeListView custom view class. I have implemented it like that: First I have imported PullToRefresh library into my project then I have added a …
Nouman Bhatti
  • 1,777
  • 4
  • 28
  • 55
1
vote
1 answer

Changing the starting tab of multiple swipe views with tabs

So I am "playing" around with some code i got from a tutorial on Tab layout with swipeable views.. My Problem is that I cannot figure out how to change the default tab it opens, when the app is launched.. Right now it starts in the 1st tab(Top…
Bagge
  • 15
  • 3
1
vote
0 answers

wrong action bar menu and title showing during swipe view in Android swipe view tab

Hi I have debugged my code and got to know that getItem() function in actionbarActivity is calling twice when i switch tabs. Lets say i have three tabs(each tab consists of a fragment) and i am moving from first to second tab, getItem() method calls…
1
vote
1 answer

Android swipe view with view pager

Based on android Creating Swipe Views with Tabs http://developer.android.com/training/implementing-navigation/lateral.html How can I Take listview with custom adapters and use in this example? I mean instead showing simple textview , display as. …
user3004288
  • 17
  • 1
  • 5
1
vote
1 answer

Android - Sending data from fragment to fragment using swipeview

Could be this is a dupe, but I've been looking for solutions and they always slightly differ from my problem. So: I'm currently creating an app that has 2 fragments that are swipeable. TaskGroupFragment shows a list and when you click on an item it…
Dennie
  • 743
  • 2
  • 13
  • 30
1
vote
0 answers

How to get a two level list view to work within a swipe tab layout

I'm trying to create an app where the user can select a item in a list and then click that item in the list which opens another page, i've got it to work on its own and i've managed to put it into a swipe tab layout but when the user clicks on an…
user3092467
  • 93
  • 1
  • 5
  • 17