Swiping is not working

Hi!

I'm tried the SfTabView control and have the problem that horizontal swiping is not working.
I set the EnableSwiping to True.
My example (like on demo page):

<
tabView:SfTabView VerticalOptions="FillAndExpand" EnableSwiping="True" >
			<tabView:SfTabItem Title="Artikel">
				<tabView:SfTabItem.Content>
					<Grid BackgroundColor="Yellow" x:Name="FavorittresGrid" />
				</tabView:SfTabItem.Content>
			</tabView:SfTabItem>
			<tabView:SfTabItem Title="Favorites">
				<tabView:SfTabItem.Content>
					<Grid BackgroundColor="Green" x:Name="FavoritesGrid" />
				</tabView:SfTabItem.Content>
			</tabView:SfTabItem>
		</tabView:SfTabView>

Thanks and regards

7 Replies

RK Rathana Kumar Sekar Syncfusion Team March 15, 2018 12:19 PM UTC

Hi Michael Sandler,

Thanks for contacting Syncfusion Support.

We have checked the reported issue "Swiping is not working in Android" and we could reproduce it from our side. So, we have also logged bug report for same and fix will be available our upcoming Volume 1 SP1 release, Which will be rolled out by the end of this month.

Regards,
Rathanakumar S.



MS Michael Sandler March 15, 2018 06:04 PM UTC

Hi!
Is it generally not working or is there a trick to get the functionality?

thanks and regards


RK Rathana Kumar Sekar Syncfusion Team March 16, 2018 10:23 AM UTC

Hi Michael Sandler,

Thanks for your update.

We have checked the reported issue "Swiping is not working in Android" and there is no work around to solve this issue. So we have logged bug report for this. As mentioned earlier the fix will be available our upcoming Volume 1 SP 1 release.

Regards,
Rathanakumar S.


CH cherry April 3, 2018 01:54 AM UTC

Hi.

Any update with this bug? Or estimate when will the fix be released? I tested this with the latest release (v16.1.0.32) but it still occurs.

Thank you and regards


VA Vinnalan Aravazhi Syncfusion Team April 3, 2018 12:10 PM UTC

Hi Cherry,

Sorry for the inconvenience.

Due to some stability issues in our SfTabView control, fix for the reported issue "Swiping is not working in Android" is not included in our volume 1 SP 1 release. Fix will be included our upcoming Vol 1 SP 2 release, which will be rolled out by the end of this month.

Regards,
Vinnalan K A.


OS Oliver Sass April 19, 2018 12:22 PM UTC

Actually there is some kind of workaround as you can just provide a tapgesturerecognizer to the SfTabItem.Content like this:

<tabView:SfTabItem.Content>
  <Grid>
    <Grid.GestureRecognizers>
      <TapGestureRecognizer/>
    </Grid.GestureRecognizers>
    [...]
  </Grid>
</tabView:SfTabItem.Content>  


VA Vinnalan Aravazhi Syncfusion Team April 20, 2018 10:19 AM UTC

Hi Oliver,

Thanks for the update.

We cannot handle the swipe in TabItem using TabGestureRecognizers as we can get only the Tap event. If needed we can switch the Tabs using SelectedIndex which is already possible by tapping the TabItem header. We have already fixed the swipe issue with TabView and it will be available in our upcoming Volume 1 SP2 release which is scheduled to be rolled out by end of this month.

Please let us know if you have any concern.

Regards,
Vinnalan K A.


Loader.
Up arrow icon