TwoSidedlayout

TwoSidedlayout is a view that can turn round to show the back side.

Лицензия

Лицензия

Категории

Категории

IDE Инструменты разработки
Группа

Группа

com.liuguangqiang.twosidedlayout
Идентификатор

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

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

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

1.0.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

TwoSidedlayout
TwoSidedlayout is a view that can turn round to show the back side.
Ссылка на сайт

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

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

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

https://github.com/liuguangqiang/TwoSidedlayout

Скачать library

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

<!-- https://jarcasting.com/artifacts/com.liuguangqiang.twosidedlayout/library/ -->
<dependency>
    <groupId>com.liuguangqiang.twosidedlayout</groupId>
    <artifactId>library</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.liuguangqiang.twosidedlayout/library/
implementation 'com.liuguangqiang.twosidedlayout:library:1.0.0'
// https://jarcasting.com/artifacts/com.liuguangqiang.twosidedlayout/library/
implementation ("com.liuguangqiang.twosidedlayout:library:1.0.0")
'com.liuguangqiang.twosidedlayout:library:aar:1.0.0'
<dependency org="com.liuguangqiang.twosidedlayout" name="library" rev="1.0.0">
  <artifact name="library" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.liuguangqiang.twosidedlayout', module='library', version='1.0.0')
)
libraryDependencies += "com.liuguangqiang.twosidedlayout" % "library" % "1.0.0"
[com.liuguangqiang.twosidedlayout/library "1.0.0"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
com.android.support » appcompat-v7 jar 26.0.0
com.facebook.rebound : rebound jar 0.3.7

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

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

TwoSidedLayout

TwoSidedLayout is a view that can turn to show the back side. This library is using Rebound to render animations.

Screenshots

image

image

##Usage

Gradle

dependencies {
   	compile 'com.liuguangqiang.twosidedlayout:library:1.0.0'
}

Maven

<dependency>
  	<groupId>com.liuguangqiang.twosidedlayout</groupId>
  	<artifactId>library</artifactId>
  	<version>1.0.0</version>
  	<type>aar</type>
</dependency>

Layout

TwoSidedLayout must contains only two direct children.

<com.liuguangqiang.TwoSidedLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:id="@+id/back"
            android:layout_width="match_parent"
            android:layout_height="match_parent"></RelativeLayout>

        <RelativeLayout
            android:id="@+id/front"
            android:layout_width="match_parent"
            android:layout_height="match_parent"></RelativeLayout>

    </com.liuguangqiang.TwoSidedLayout>

Orientation

HORIZONTAL

VERTICAL

Tension and Friction

TwoSidedLayout is using Rebound to render animations. Change tension and friction will influence the animation effects in Rebound. So TwoSidedLayout create a method to change these.

public void setTensionAndFriction(double tension, double friction)

License

Copyright 2015 Eric Liu

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.

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

Версия
1.0.0
0.1.0