AvatarTinderView

Additional

Language
Java
Version
v1.3 (Jun 14, 2017)
Created
May 26, 2017
Updated
Nov 27, 2017 (Retired)
Owner
Tran Hung (ATHBK)
Contributor
Tran Hung (ATHBK)
1
Activity
Badge
Generate
Download
Source code

Avatar Tinder View

Avatar Tinder View is a library that allows you to create a view for change avatar like app tinder.

Table of Contents

  1. Gradle Dependency
    1. Repository
    2. Dependency
  2. Basic Usage
    1. IndicatorView XML
    2. Attributes
  3. Init Java
  4. License

Gradle Dependency

Repository

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
 repositories {
  ...
  maven { url 'https://jitpack.io' }
 }
}

Dependency

Add this to your module's build.gradle file:

dependencies {
 compile 'com.github.ATHBK:AvatarTinderView:v1.3'
}

Basic Usage

XML

To use this AvatarTinderView in your layout simply copy and paste the xml below. This provides the default AvatarTinderView.

<com.athbk.avatarview.TinderRecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/recyclerView">

AvatarTinderView Attr

  ....
 app:spanCount="2"
 app:aspectRatio="1f"
   app:numberColoum="3"

Init from Java

Java

How to use in .

  1. Class Adapter must extends TinderRVAdapter
  2. Declare TinderRecyclerView in framgent or activiy:
 AvatarAdapter adapter = new AvatarAdapter(this, listString);
   recyclerView.initRecyclerView(this, adapter);

License

Copyright 2017 ATHBK

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.