Android UI Library


Лицензия

Лицензия

Группа

Группа

com.github.markushi
Идентификатор

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

android-ui
Последняя версия

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

1.2
Дата

Дата

Тип

Тип

aar
Описание

Описание

Android UI Library
Android UI Library
Ссылка на сайт

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

https://github.com/markushi/android-ui
Система контроля версий

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

https://github.com/markushi/android-ui

Скачать android-ui

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

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

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

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

Deprecated

This library is deprecated and no further development is taking place.

android-ui

Android library for UI components.
Gradle integration:

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.github.markushi:android-ui:1.2'
}

Requires API level 14+
Download example apk

Components

ActionView

ActionView Example
A widget which can dynamically animate between defined Actions.

<at.markushi.ui.ActionView
	android:id="@+id/action"
	android:layout_width="56dip"
	android:layout_height="56dip"
	android:padding="16dip"
	app:av_color="@android:color/white"
	app:av_action="drawer"/>

You can dynamically change the action with:

actionView.setAction(new BackAction(), ActionView.ROTATE_COUNTER_CLOCKWISE);

The following Actions are built in:

  • DrawerAction
  • BackAction
  • CloseAction
  • PlusAction

Please note: ActionView is still under development. The API might change at any time.

RevealColorView

RevealColorView Example
A component which mimics parts of the circular reveal/hide animation introduced in the Android-L preview.
Note: This is not a backport of the original reveal/hide effect.

See this example gist on how to use it.

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

Версия
1.2
1.1
1.0