android_maskable_layout alternatives and similar packages
Based on the "Layout Widget" category.
Alternatively, view android_maskable_layout 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 -
AndroidSwipeLayout
The Most Powerful Swipe Layout! -
FlycoTabLayout
An Android TabLayout Lib has two kinds of TabLayout at present. -
ResideLayout
An Android Layout which has a same function like -
SmartTabLayout
A custom ViewPager title strip which gives continuous feedback to the user when scrolling -
SwipeBackLayout
An Android library that help you to build app with swipe back gesture. -
FoldingCell
FoldingCell is an expanding content cell inspired by folding paper material -
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. -
FoldableLayout
Android widgets to implement folding animation -
ExpandableLayout
Implementation of ExpandableListview with custom header and custom content. -
smooth-app-bar-layout
Smooth version of Google Support Design AppBarLayout -
SwipeRevealLayout
A layout that you can swipe/slide to show another layout. -
SuperSwipeRefreshLayout
A Custom SwipeRefreshLayout -
DragTopLayout
Drag down to show a view on the top. -
Dragger
The library was created in order to provide new animations for activities on Android. -
SmoothRefreshLayout
A highly efficient refresh library for Android . In theory , Can support all Views.一个高效的Android刷新库,理论上支持所有的视图,比官方的SwipeRefreshLayout更强大且使用方便. -
Search-View-Layout
[BETA] Search View Layout like Lollipop Dialler -
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. -
CursorWheelLayout
An Android Widget for selecting items that rotate on a wheel. -
android-empty-layout
A library for showing different types of layouts when a list view is empty -
PhysicsLayout
Android layout that simulates physics using JBox2D -
JellyRefreshLayout
A pull-down-to-refresh layout inspired by Lollipop overscrolled effects -
NodeFlow
NodeFlow is an Android library that provides a simple way to visualize hierarchical content. -
DragLinearLayout
Android LinearLayout with drag and drop to reorder. -
ImageLayout
Android - A layout that arranges its children in relation to a background image -
Android-MosaicLayout-v0.1
Mosaiclayout is android layout to display group of views in more that 92 different patterns. -
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-linear-layout-manager
Implementation of LinearLayoutManager which wraps its contents. -
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-MaterialDeleteLayout
Maetrial Design Delete Concept Implement -
BlurZoomGallery
Extended CoordinatorLayout, that helps creating background galleries. -
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. -
ScrollDownLayout
A custom Android Widget,support u use ViewPager in a ScrollView or ListView。 -
Android Accordion Swipe Layout
Accordion Swipe Layout for Android -
ZigzagView
a zigzag view for using for ticket or invoice
Scout APM - Leading-edge performance monitoring starting at $39/month
* 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 android_maskable_layout or a related project?
README
Maskable Layout
Overview
=======================
The Maskable Layout is a simple framelayout that allows you to easily mask views and viewgroups. You can also execute other porterduffxfermodes. Simple Drawables are accepted, as well as AnimationDrawables !
Example
=======================
Usage
======================= This example masks his child element (Imageview) with the mask "animation_mask" and sets the porterDuffXferMode to DST_IN
<com.christophesmet.android.views.maskableframelayout.MaskableFrameLayout
android:id="@+id/frm_mask_animated"
android:layout_width="100dp"
app:porterduffxfermode="DST_IN"
app:mask="@drawable/animation_mask"
android:layout_height="100dp">
<ImageView android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/unicorn"/>
</com.christophesmet.android.views.maskableframelayout.MaskableFrameLayout>
Building
======================= Fork the repository and include the 'library' module and you are done :) AAR File coming to soon to maven central near you ;)
Or use JitPack: https://jitpack.io/#christophesmet/android_maskable_layout
repositories {
maven { url 'https://jitpack.io' }
}
implementation 'com.github.christophesmet:android_maskable_layout:v1.3.1'
License
Copyright 2015 Christophe Smet.
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 all licence references and agreements mentioned in the android_maskable_layout README section above
are relevant to that project's source code only.