Android-Tiling-ScrollView alternatives and similar packages
Based on the "ListView/ScrollView Widget" category.
Alternatively, view Android-Tiling-ScrollView alternatives based on common mentions on social networks and blogs.
-
Android-ObservableScrollView
Android library to observe scroll events on scrollable views. -
StickyListHeaders
An android library for section headers that stick to the top -
SwipeMenuListView
[DEPRECATED] A swipe menu for ListView. -
Pull-to-Refresh.Rentals-Android
Phoenix Pull-to-Refresh -
android-pulltorefresh
DEPRECATED This project aims to provide a reusable pull to refresh widget for Android. -
pinned-section-listview
Easy to use ListView with pinned sections for Android. -
Android-SlideExpandableListView
A better ExpandableListView, with animated expandable views for each list item -
PullZoomView
An Android custom ListView and ScrollView with pull to zoom-in. -
XListView-Android
ListView supports pull refresh and pull up to load more feature. -
CommonPullToRefresh
Android widget with pull to refresh for all the views,and support loadMore for ListView , RecyclerView, GridView and SwipeRefreshLayout. -
Android-HorizontalListView
HorizontalListView is an Android ListView widget which scrolls in a horizontal manner (in contrast with the SDK-provided ListView which scrolls vertically). -
ListBuddies
Android library to achieve in an easy way, the behaviour of the home page in the Expedia app, with a pair of auto-scroll circular parallax ListViews. -
StickyScrollViewItems
A small android library for tagging views inside a ScrollView as "sticky" making them stick to the top of the scroll container until a new sticky view comes and takes it's place -
HorizontalVariableListView
Horizontal list view for Android which allows variable items widths -
PinnedHeaderListView
A ListView with pinned section headers for Android -
PullToRefresh-ListView
A generic, customizable, open source Android ListView implementation that has 'Pull to Refresh' functionality. -
StikkyHeader
This is a very simple library for Android that allows you to stick an header to a scrollable view and easily apply animation to it -
ParallaxScroll
Parallax ScrollView and ListView for Android -
PagedHeadListView
Android boosted ListView supporting paginated header with a new material page indicator. -
FlabbyListView
Android library to display a ListView whose cells are not rigid but flabby and react to ListView scroll. -
ParallaxListView
A Android ListView Demo with a parallax effect header like Path. -
LinearListView
Android library that allows you to bind a LinearLayout with a ListAdapter. -
android-pulltorefresh-and-loadmore
android custom listview,with interaction pattern load more and pull to refresh to load data dinamically -
ListviewFilter
Awesome Listview filter functionality in Android. -
quickscroll
[Development stopped in 2014. Unfinished and not stable - not recommended to use.] Bringing extended scrolling features to Android's native ListView and ExpandableListView. -
FloatingGroupExpandableListView
An open source Android library that provides a floating group view at the top of the ExpandableListView -
PinterestListView
Pinterest style ListView for Android -
HeaderListView
Android ListView with sticky headers -
android-accordion-view
Simple ListView based Android AccordionView -
DragNDropList
An easy to use Drag & Drop List for Android. Direct replacement of the android ListView. -
QuickReturn
Android ListView that implements the QuickReturn UI pattern. Written from scratch with focus on performance. -
FilterSelectorListView
FilterSelectorListView
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Android-Tiling-ScrollView or a related project?
README
Project is not maintained right now. Please see the note at the end of this file.
Introduction
This Android widget aims to provide a scalable way to display large images (like Metro maps, paintings) while keeping the memory consumption as low as possible.
The source image will be provided in TILES, so that all tiles combined create the full scale image.
Current features:
- Specify a image pattern to find the tiles
- Freely navigate through the image using a two dimensional scroll view
- Load required tiles on demand and non-blocking
- Zoom levels using multiple levels of tiles
- Panning, Pinching etc (multitouch gestures), work in progress
Planned features:
- A way to overlay icons or other widgets at fix points (similar to Google Maps), which should be useful for annotations
Example
<asia.ivity.android.tiledscrollview.TiledScrollView
android:id="@+id/tiledScrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:file_pattern="tiger400/crop_%col%_%row%.png"
app:tile_height="100"
app:tile_width="100"
app:image_width="400"
app:image_height="300"
app:zoom_buttons="true"
/>
Attributes:
- file_pattern - specifies the pattern to find the files. Placeholders
%col%
and%row%
are mandatory - tile_height & tile_width - specify the tile dimensions. The widget should be able to handle non-fitting images (i.e. if the last tile is smaller then others tiles well)
- image_height & image_width - image dimensions to support abovementioned functions.
- zoom_buttons - whether to enable the zoom buttons, default is
true
.
The attributes are very likely to be reduced and cut. I prefer the widget to be more simple in the long term.
Multiple Zoom Levels
The View supports different zoom levels. You can add them using Java.
final TiledScrollView tiledScrollView = (TiledScrollView) findViewById(R.id.tiledScrollView);
tiledScrollView.addConfigurationSet(TiledScrollView.ZoomLevel.LEVEL_1,
new ConfigurationSet("tiger800/crop_%col%_%row%.png", 100, 100, 800, 600));
tiledScrollView.addConfigurationSet(TiledScrollView.ZoomLevel.LEVEL_2,
new ConfigurationSet("tiger1600/crop_%col%_%row%.png", 100, 100, 1600, 1200));
Credits
- Apple's iOS CATiledLayer for inspiring this work
- http://GORGES.us for developing and publishing a two dimensional ScrollView
- http://www.animalspedia.com/wallpaper/The-Siege---Siberian-Tiger/ for providing a nice sample picture
Apps using this library
- https://play.google.com/store/apps/details?id=asia.ivity.qifu.android.map
- Send a pull request to add your App.
Maven
The plugin is available in the maven central repository.
<dependency>
<groupId>asia.ivity</groupId>
<artifactId>tiledscrollview</artifactId>
<version>1.1.1</version>
<type>apklib</type>
</dependency>
License
This library is released under a BSD license. See the LICENSE file included with the distribution for details.
Not for you?
Check out https://github.com/moagrius/TileView, which is a up to date Tiling library which includes many features.
*Note that all licence references and agreements mentioned in the Android-Tiling-ScrollView README section above
are relevant to that project's source code only.