Android View Reveal Animator

ViewAnimator with reveal effect

Лицензия

Лицензия

Группа

Группа

it.sephiroth.android.library.viewrevealanimator
Идентификатор

Идентификатор

view-reveal-animator
Последняя версия

Последняя версия

1.1.4
Дата

Дата

Тип

Тип

aar
Описание

Описание

Android View Reveal Animator
ViewAnimator with reveal effect
Ссылка на сайт

Ссылка на сайт

https://github.com/sephiroth74/ViewRevealAnimator
Система контроля версий

Система контроля версий

https://github.com/sephiroth74/ViewRevealAnimator

Скачать view-reveal-animator

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/it.sephiroth.android.library.viewrevealanimator/view-reveal-animator/ -->
<dependency>
    <groupId>it.sephiroth.android.library.viewrevealanimator</groupId>
    <artifactId>view-reveal-animator</artifactId>
    <version>1.1.4</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/it.sephiroth.android.library.viewrevealanimator/view-reveal-animator/
implementation 'it.sephiroth.android.library.viewrevealanimator:view-reveal-animator:1.1.4'
// https://jarcasting.com/artifacts/it.sephiroth.android.library.viewrevealanimator/view-reveal-animator/
implementation ("it.sephiroth.android.library.viewrevealanimator:view-reveal-animator:1.1.4")
'it.sephiroth.android.library.viewrevealanimator:view-reveal-animator:aar:1.1.4'
<dependency org="it.sephiroth.android.library.viewrevealanimator" name="view-reveal-animator" rev="1.1.4">
  <artifact name="view-reveal-animator" type="aar" />
</dependency>
@Grapes(
@Grab(group='it.sephiroth.android.library.viewrevealanimator', module='view-reveal-animator', version='1.1.4')
)
libraryDependencies += "it.sephiroth.android.library.viewrevealanimator" % "view-reveal-animator" % "1.1.4"
[it.sephiroth.android.library.viewrevealanimator/view-reveal-animator "1.1.4"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.android.support » support-v4 jar 21.0.3

Модули Проекта

Данный проект не имеет модулей.

AndroidLibs ViewRevealAnimator Widget

ViewAnimator view with a lollipop style reveal effect. Regular animation can be set (just like the default ViewAnimator) for android < 21.

Installation

Just add this to your gradle build script:

    compile 'it.sephiroth.android.library.viewrevealanimator:view-reveal-animator:+'

Usage

    <it.sephiroth.android.library.viewrevealanimator.ViewRevealAnimator
        android:layout_centerHorizontal="true"
        android:id="@+id/animator"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:animationDuration="@android:integer/config_longAnimTime"
        app:vra_hideBeforeReveal="true"
        android:measureAllChildren="true"
        android:animateFirstView="true"
        android:outAnimation="@anim/out_animation"
        android:inAnimation="@anim/in_animation"
        android:interpolator="@android:interpolator/accelerate_decelerate">


        <Your Views here />


    </it.sephiroth.android.library.viewrevealanimator.ViewRevealAnimator>

Then in your code:

    ViewRevealAnimator mViewAnimator = (ViewRevealAnimator) findViewById(R.id.animator);

To show the next or previos index :

    mViewAnimator.showNext();
    mViewAnimator.showPrevious();

or:

    mViewAnimator.setDisplayedChild(mViewAnimator.getDisplayedChild()+1, true, new Point(250, 250));

where the first parameter is the targetChild to display, second means animation on/off, and third parameter (optional) is to set a custom origin for the reveal/hide animation

Show previous view:

Preview

Preview

License

The MIT License (MIT)
[OSI Approved License]
The MIT License (MIT)

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Версии библиотеки

Версия
1.1.4
1.1.3
1.1.2
1.1.1
1.0.2