-
Notifications
You must be signed in to change notification settings - Fork 29
Sections
Roman Tcaregorodtcev edited this page Oct 30, 2019
·
1 revision
For usage just add you Views inside OmegaRecyclerView and add "app:layout_section" parameter. By default your view will have header section.
<?xml version="1.0" encoding="utf-8"?>
<com.omega_r.libs.omegarecyclerview.OmegaRecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="Header"
app:layout_section="header"/>
<TextView
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="Footer"
app:layout_section="footer"/>
</com.omega_r.libs.omegarecyclerview.OmegaRecyclerView>
OmegaRecyclerView.setHeadersVisibility(true);
OmegaRecyclerView.setFootersVisibility(false);
-
- ViewPager Transformers
- AccordionTransformer
- BackgroundToForegroundTransformer
- CubeInTransformer
- CubeOutTransformer
- DepthPageTransformer
- FadeTransformer
- FlipTransformer
- ForegroundToBackground
- RotateDownTransformer
- RotateUpTransformer
- StackTransformer
- TabletTransformer
- ZoomInTransformer
- ZoomOutSlideTransformer