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

GridView dynamically loading shows previous data

I have swipeView with GridView. I am creating Gridview dynamically based on my model count. (Each gridView holds maximun 6 cell only. ie, if the model count is 7 I am creating second gridView with the last Item). It is working fine. I am facing an…
Vineesh TP
  • 7,755
  • 12
  • 66
  • 130
0
votes
0 answers

Unable to make simple tab View on android

this is main activity code app crashes whenever executed i dont know whats wrong with the code i am trying to create tab views but i cant get anything on the actionBar .The app crashes on attaching the adapter with it.. i am a noobie i dont know…
Simar
  • 21
  • 2
0
votes
1 answer

swipe view pager with indicator

I am having a swipe ViewPager with page indicator but when I run my application I see the playbutton.xml and the swipe view does not work. Here is my java Activity (play_button.java): public class play_button extends Activity…
0
votes
3 answers

Android - Using SwipeView for an entire ListView

I've seen several examples (here) of SwipeViews that are implemented on a ListView, but these are for individual items on the list and not for the ListView itself. In my app, an intent is started from one Listview item and that sends you to the…
Chosen1
  • 279
  • 4
  • 18
0
votes
1 answer

How to set onItemClick in gridView

I am trying to make a project where the images are arranged in Gridview and when ever the image is clicked it will open the image in the ViewPager. But I am not able to set as I am a beginner in Android. Here is the code of my GridView and…
user5992514
0
votes
2 answers

How to set wallpaper manager in swipeview

I am trying to make a wallpaper application where the user can swipe the image and when he finds a proper image he can set the image as the wallpaper .But I am not able to set the wallpaper manager here is my code Custome swipe adapte class`package…
user5992514
0
votes
1 answer

Using animations in fragments of PagerAdapter

I am trying to do SwipeViews with some animations in each fragment. For example I would like to change alpha of button from 0 to 1. I wrote animation
Matej Košút
  • 590
  • 2
  • 10
  • 27
0
votes
1 answer

android.support.v4.app.FragmentTransaction cannot be converted to fragment manager

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 can create them separately, but when I try to do in 1, I get error. MainActivity // for navigation…
Tony
  • 2,515
  • 14
  • 38
  • 71
0
votes
2 answers

Create tabs swipe view failed

How to fix Main is not abstract and does not override abstract method onTabReselected(Tab,FragmentTransaction) in TabListener ? Not sure whether I implementing in the correct method, but the debugger said import android.app.FragmentTransaction; is…
user5256621
0
votes
1 answer

ViewPager in Fragment called from another Fragment Android

I have an issue with my viewpager for the android app that I am working on. I have DrawerLayout that calls Fragments. One of these Fragments is the HomeFragment, which contains 2 clickable textviews. I want the HomeFragment to switch to another…
0
votes
1 answer

OnItemClick of list view it should show the detialFragment with swipeable functionality in ViewPager

In brief, I am going to build a Project with swipeView and the fragments. MainActivity.java a. ListViewFragment.java b. DetialFragment1.java c. DetialFragment3.java d. DetialFragment4.java e. DetialFragment5.java MainActivity.java contain the…
jazzbpn
  • 6,441
  • 16
  • 63
  • 99
0
votes
1 answer

Implementing an expandable listview in tab fragment

Followed the tutorial from androidhive to create an expandable listview. http://www.learn-android-easily.com/2013/07/android-tabwidget-example.html Followed tutorial to create horizontal tabs. Edited the Tab Widget Example (Second tutorial) to put…
0
votes
1 answer

Using Swipe view in drawer navigation

I'm made a navigation drawer and the listview that I have is complete and now I decided with the main content to the right of it. However I had a and now I'm gonna replace it with a swipe view. But I can't find any swipe-view-in-drawer-navigation…
Payam30
  • 689
  • 1
  • 5
  • 20
0
votes
2 answers

What is ActionBar.setHomeButtonEnabled(boolean)

I want to create a viewpager which contains 2 tabs, I have 3 layout: This is activity_chart.xml that contains paper:
Salar Rastari
  • 2,280
  • 5
  • 22
  • 35
0
votes
0 answers

Updating a textView/s in a fragment from an Activity (using ViewPager)

I'm constantly receiving data in MainActivity and I need it to only be written a textView when the fragment that contains the textView is inflated. Obviously the app crashes if I try to write to a textView that is in a fragment currently not in…
Luke Allison
  • 3,118
  • 3
  • 24
  • 40