All Projects → JakeWharton → Android Directionalviewpager

JakeWharton / Android Directionalviewpager

Licence: apache-2.0
[DEPRECATED] Implementation of the compatibility library ViewPager class that supports paging both vertically and horizontally.

Programming Languages

java
68154 projects - #9 most used programming language

Android DirectionalViewPager

Implementation of the compatibility library ViewPager class that supports paging both vertically and horizontally as well as changing between the two at runtime.

Try out the sample application on the Android Market.

Example Image

Usage

For a working implementation of this project see the sample/ folder.

  1. Include the widget in your view.

    <com.directionalviewpager.DirectionalViewPager android:id="@+id/pager" android:layout_height="fill_parent" android:layout_width="fill_parent" />

By default the widget will page horizontally. You can alter this behavior by
including `android:orientation="vertical"` in the layout or by calling
`setOrientation(DirectionalViewPager.VERTICAL)` in your code.
  1. In your onCreate method (or onCreateView for a fragment), bind to a PagerAdapter implementation.

    DirectionalViewPager pager = (DirectionalViewPager)findViewById(R.id.pager);
    pager.setAdapter(new TestAdapter(getSupportFragmentManager()));
    

Including In Your Project

Android-DirectionalViewPager is presented as a standalone .jar file. It should included in addition to the compatibility library .jar.

You can download the file from the GitHub downloads page or compile your own by running mvn clean package (it will be in the library/target/ folder).

If you are using maven you can easily include the library by specifying it as a dependency:

<dependency>
  <groupId>com.directionalviewpager</groupid>
  <artifactId>library</artifactId>
  <version>1.2.0</version>
</dependency>

You must also include the following repository:

<repository>
  <id>com.jakewharton</id>
  <url>http://r.jakewharton.com/maven/release</url>
</repository>

Developed By

License

Copyright 2011 Jake Wharton
Copyright 2011 Android Open Source Project

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].