hiroaki-dev / ContributionsView

This is GitHub contributions like view for Android.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ContributionsView

Usage

  • Project level build.gradle

     allprojects {
     	repositories {
     		...
     		maven { url 'https://jitpack.io' }
     	}
     }
  • App level build.gradle

     dependencies {
     		implementation 'com.github.hiroaki-dev:ContributionsView:v0.1'
     }
  • Your xml layouts

     <me.hiroaki.contributionsview.ContributionsView
         android:id="@+id/contributionsView"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:padding="16dp"
         app:day_of_week_font_size="12sp"
         app:layout_constraintLeft_toLeftOf="parent"
         app:layout_constraintRight_toRightOf="parent"
         app:layout_constraintTop_toTopOf="parent"
         app:month_font_size="12sp"
         app:square_size="8dp"/>

Credits

I used ThreeTenABP library by Jake Wharton.

License

Copyright 2018 Yuki Nakakura

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.

About

This is GitHub contributions like view for Android.

License:Apache License 2.0


Languages

Language:Kotlin 96.1%Language:Java 3.9%