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
2
votes
1 answer

Xamarin trigger on button not firing in a FreshMvvm / SwipeView context

The almost identical setup but without the SwipeView context is working fine. The trigger gets fired and I do "my thing". See the following xaml code + PageModel.cs code :
2
votes
1 answer

QML Swipeview no animation

Is it possible to remove the animation from swipeviews? The one where you see the transition from the previous and the next page. I have many pages and I have a menu that selects the active item like: mainContent.setCurrentIndex(0) where…
Sven van den Boogaart
  • 11,833
  • 21
  • 86
  • 169
2
votes
1 answer

How Use ListModel with SwipeView?

I have a c++ class that i registerd it in qml , and this class have an model that was inherited from QAbstractListModel,Now I want this model with a SwipeView Manager { id: manager } SwipeView { id: sv model:manager.listModel…
mohsen
  • 1,763
  • 3
  • 17
  • 55
2
votes
2 answers

Acces contentData properties

Here is a MWE: import QtQuick 2.12 import QtQuick.Controls 2.5 ApplicationWindow { visible: true width: 640 height: 480 title: swipeView.contentData[swipeView.currentIndex].text; // doesnt work …
Łukasz Przeniosło
  • 2,725
  • 5
  • 38
  • 74
2
votes
1 answer

Add dynamically QML Page on SwipeView QML

i need to add dynamically pages on swipeview. So my code: SwipeView { id: viewSwipe width: parent.width height: parent.height * 0.70 currentIndex: 0 Component.onCompleted: { …
Mr. Developer
  • 3,295
  • 7
  • 43
  • 110
2
votes
1 answer

How to solve not abstract and does not override abstract method onTabReselected

I'm trying to create navigation drawer in my app. In one of my navigation drawer item, View , I want it to has 2 tabs with swipe view feature. I get error Viewview is not abstract and does not override abstract method onTabReselected. MainActivity…
Tony
  • 2,515
  • 14
  • 38
  • 71
2
votes
1 answer

How to implement swipe view on fragment

I'm trying to implement a swipe inside a fragment! My application use a Navigation Drawer Layout and I change view with the drawer. All the view that I show are fragment. Now, I want to implement into a specific fragment an horizontal swipe. How can…
2
votes
1 answer

How to add swipelayout in recyclerview inside viewpager fragment?

I'm using AndroidSwipeLayout for 'Swipe To Delete' Action in RecyclerView Item. Swipe is not working as parent of RecyclerView is ViewPager Fragment. SwipeLayout also contain parent.requestDisallowInterceptTouchEvent(true); to intercept touchEvent…
2
votes
2 answers

Null pointer errors in mainActivity for building swipe view with tabs on Android studios

I am looking to build the swipe view with tabs function in my application by following a tutorial that I found on one of the answers in the forum [http://www.androidhive.info/2013/10/android-tab-layout-with-swipeable-views-1/] But I keep getting a…
2
votes
1 answer

Connection between RecyclerView and SwipeView?

I have two tabs. The first is a RecyclerView and the second one is a ViewPager. In the first item of the RecyclerView is a short description and in the first page of the ViewPager is the same content only that the description is not short but in…
SerOsDeveloper
  • 253
  • 1
  • 3
  • 12
2
votes
3 answers

Swipe command in calabash iOS

Hi i have to swipe the bunch of screens and i tried some of the syntax like scroll("*",:right) swipe "left", {:query => "*"} swipe(:left) But it swipes and leave back the screen to same screen.
Lucan
  • 99
  • 1
  • 3
  • 12
2
votes
0 answers

After getting ListView updated or refrshed,button click not working

I am using 47deg/android-swipelistview library and i am facing some problem. I have listview containing buttons in each list item. but when I swipe one of the list item to dismiss it. It dismisses successfully but after that all my button in other…
Jay Dhamsaniya
  • 323
  • 2
  • 4
  • 15
2
votes
1 answer

SwipeListView front bug click 2.3 android

Implemented SwipeListView 47 Degrees library, work fine, but on android 2.3.* not working click on back view - front view always catch click event. Googling gave no results. Maybe, someone found solution how to implement click on back view.
ruslik
  • 173
  • 1
  • 13
2
votes
0 answers

Error executing doInBackground() while implementing swipe tabs

I downloaded the source code for implementing Google Places API from here(can be downloaded from here), but it has only a basic ListView but I wanted to integrate swipable tabs with it, so I tried everything and finally, tried to copy every line of…
2
votes
1 answer

How to call removeView() when trying to set page control?

I am trying to set some images in swipeview and adding a pagecontrol in that view as given below : //In onCreate swipeView = (SwipeView) findViewById(R.id.swipe_view); swipeView.setOnClickListener(this); pageControl =…
user1744952
  • 508
  • 1
  • 3
  • 15
1 2
3
12 13