Popularity
2.3
Stable
Activity
0.0
Stable
79
5
16
Programming language: Java
Latest version: v1.0
DiscrollView 2 alternatives and similar packages
Based on the "Layout Widget" category.
Alternatively, view DiscrollView 2 alternatives based on common mentions on social networks and blogs.
-
SmartRefreshLayout
SmartRefreshLayout extended the thoughts of SwipeRefreshLayout,using a ViewGroup to include a list of Views, to maintain its low coupling and high versatility -
SmartTabLayout
A custom ViewPager title strip which gives continuous feedback to the user when scrolling -
FreeFlow
A layout engine for Android that decouples layouts from the View containers that manage scrolling and view recycling. FreeFlow makes it really easy to create custom layouts and beautiful transition animations as data and layouts change -
android-PullRefreshLayout
This component like SwipeRefreshLayout, it is more beautiful than SwipeRefreshLayout. -
android-flowlayout
Linear layout, that wrap its content to the next line if there is no space in the current line. -
ExpandableLayout
Implementation of ExpandableListview with custom header and custom content. -
SmoothRefreshLayout
A highly efficient refresh library for Android . In theory , Can support all Views.一个高效的Android刷新库,理论上支持所有的视图,比官方的SwipeRefreshLayout更强大且使用方便. -
Vorolay
VoronoiView is a view (ViewGroup) that allows you to add and display views inside Voronoi diagram regions. -
FlowLayout
Android implementation of FlowLayout. Layout arranges its children in multiple rows depending on their width. -
android_maskable_layout
A library that easily allows you to mask layouts/viewgroups -
NodeFlow
NodeFlow is an Android library that provides a simple way to visualize hierarchical content. -
Android-MosaicLayout-v0.1
Mosaiclayout is android layout to display group of views in more that 92 different patterns. -
Android-RatioLayout
This is a specified proportion to the size of the Layout or View support library, with which you can easily set a fixed ratio of the size of the Layout or View, internal adaptive size calculation, completely abandon the code to calculate the size! If you have any questions in the course or suggestions, please send an e-mail to the following e-mail, thank you! -
android-linear-layout-manager
Implementation of LinearLayoutManager which wraps its contents. -
FabTransitionLayout
Provides the Floating Action Button Transition as specified in the Material Design Guide in a simple library. -
BeerSwipeRefresh
This project aims to provide a reusable Swipe to Refresh widget for Android. -
Android-MaterialDeleteLayout
Maetrial Design Delete Concept Implement -
RearrangeableLayout
An android layout to re-arrange child views via dragging -
GooglePlusLayout
GoolgePlusLayout is a custom layout that plays animation on the children views while scrolling as the layout in the Google Plus (android) main page -
android-gridlayout
A backwards compatible implementation of GridLayout for Android -
PrismView
PrismView provides animations for your views, similar to Dragger, but with fragments! You can change the fragment of the PrismView any time. -
Android Accordion Swipe Layout
Accordion Swipe Layout for Android
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of DiscrollView 2 or a related project?
README
DiscrollView 2
Updated and revised version of flavienlaurent's DiscrollView.
Compatibilty
API Level 15+
Download
build.gradle(Project)
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
### build.gradle(Module:app)
dependencies {
implementation 'com.github.egek92:discrollview2:v1.0'
}
Usage
DiscrollView
<!-- Use DiscrollView as your root view in your layout -->
<us.egek.discrollview2.DiscrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:discrollve="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<us.egek.discrollview2.DiscrollViewContent
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- put your discrollvable views here -->
</us.egek.discrollview2.DiscrollViewContent>
</us.egek.discrollview2.DiscrollView>
Discrollvable views
- alpha
discrollve:discrollve_alpha="true
- scale
discrollve:discrollve_scaleX="true" discrollve:discrollve_scaleY="true"
translation
discrollve:discrollve_translation="fromLeft" discrollve:discrollve_translation="fromRight" discrollve:discrollve_translation="fromBottom" discrollve:discrollve_translation="fromTop"
you can also combine:
discrollve:discrollve_translation="fromRight | fromBottom"
background color
from cyan to pink:
discrollve:discrollve_fromBgColor="#00b8d4"
discrollve:discrollve_toBgColor="#c51162"
See DiscrollView 2 in action:
Sample Code:
<?xml version="1.0" encoding="utf-8"?>
<us.egek.discrollview2.DiscrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:discrollve="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<us.egek.discrollview2.DiscrollViewContent
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="600dp"
android:background="@android:color/white"
android:textColor="@android:color/black"
android:padding="25dp"
android:textSize="72sp"
android:gravity="center"
android:text="Welcome to DiscrollView 2" />
<View
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@color/colorPrimaryDark"
discrollve:discrollve_alpha="true"
discrollve:discrollve_threshold="0.3" />
<ImageView
android:layout_width="200dp"
android:layout_height="120dp"
discrollve:discrollve_alpha="true"
discrollve:discrollve_translation="fromRight|fromBottom"
android:src="@android:drawable/ic_dialog_alert" />
<View
android:layout_width="match_parent"
android:layout_height="200dp"
discrollve:discrollve_fromBgColor="@color/colorPrimary"
discrollve:discrollve_toBgColor="@color/colorAccent" />
<ImageView
android:layout_width="220dp"
android:layout_height="110dp"
android:layout_gravity="end"
android:src="@android:drawable/ic_btn_speak_now"
discrollve:discrollve_translation="fromRight" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:gravity="center"
android:text="Fancy layout"
android:textSize="18sp"
discrollve:discrollve_alpha="true"
discrollve:discrollve_translation="fromTop" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:layout_gravity="center"
android:src="@android:drawable/ic_delete"
discrollve:discrollve_scaleX="true"
discrollve:discrollve_scaleY="true" />
</us.egek.discrollview2.DiscrollViewContent>
</us.egek.discrollview2.DiscrollView>