TContributionsView


Source link: https://github.com/barryhappy/TContributionsView

??????????

TContributionsView can be use for a Contributions View, like in one personal homepage of Github, and more than that.

👻At the beginning, I just want to use it for showing the contributions view like Github, and that's why it named TContributionsView. But later, I found it seems to be able to do more things than I want …… For example: Github contributions, Pixel painting?Select seats in the cinema?checkerboard……

1. Overview

Click Here to download Demo, or scan this:

?

2. Quick Start

Import?

compile 'com.barryzhang:tcontributionsview:0.2'

If you want to show this :
?
Just writing these codes?

IntArraysContributionsViewAdapter adapter = new IntArraysContributionsViewAdapter();
 Integer arrays[][] = {

{
0, 0, 0, 1, 0, 0, 0, 0
}
,

{
0, 0, 1, 3, 1, 0, 0
}
,

{
0, 1, 2, 4, 2, 1, 0
}
,

{
0, 0, 1, 3, 1, 0, 0
}
,

{
0, 0, 0, 1, 0, 0, 0
}
, 
}
; adapter.setArrays(arrays);
 contributionsView.setAdapter(adapter);

😀Isn't very easy?

3. Attributes & Level

?
Every rectangle item is mapping to a int value as its level. Now can use level 0 to 4 (like Github)?and a extra -1 to express empty status. Just set different level to different item , you can control them.

Set item color?size?if show circle in xml:

<com.barryzhang.tcontributionsview.TContributionsView
  android:id="@+id/contributionsView1s"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"?

app:contributions_use_circle="true"
  app:contributions_color_0="#E1DFCE"
  app:contributions_color_1="#FFED3B"
  app:contributions_color_2="#F4C42E"
  app:contributions_color_3="#FB8308"
  app:contributions_color_4="#040015"
  app:contributions_item_height="10dp"
  app:contributions_item_space="1dp"
  app:contributions_item_width="10dp"/>

4. Adapter

Use setAdapter method to bind data to View.

Base usage:

BaseContributionsViewAdapter adapter; // config adapter  contributionsView.setAdapter(adapter);

Several different Adapter were already built in project, and you can also build your custom Adapter very easily by yourself.

Build-in Adapters:

  • PositionContributionsViewAdapter ?Based on (x,y) coordinate.
  • AbstractArraysContributionsViewAdapter?Based on a two-dimensional array, this is intuitive and very very easy to use.
  • IntArraysContributionsViewAdapter?This is extends AbstractArraysContributionsViewAdapter?use Int two-dimensional array.
  • DateContributionsAdapter?Based on date, with this Adapter, you can easily to get a Contributions View like Github.
  • TestContributionAdapter?A random level Adapter —— I use it as a demo :-D

4.1 ArraysContributionsViewAdapter

Mentioned earlier the "Quick Start" was a demo for ArraysContributionsViewAdapter, and in fact, it also can be used to do something much more interesting, like this:

IntArraysContributionsViewAdapter adapter = new IntArraysContributionsViewAdapter();
 Integer arrays[][] = {

{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}
,

{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 0,
}
,

{
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 3, 4, 0,
}
,

{
0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 3, 2, 4, 0,
}
,

{
0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 3, 2, 4, 0, 0,
}
,

{
0, 0, 4, 4, 0, 0, 0, 4, 2, 3, 2, 4, 0, 0, 0,
}
,

{
0, 0, 4, 3, 4, 0, 4, 2, 3, 2, 4, 0, 0, 0, 0,
}
,

{
0, 0, 0, 4, 3, 4, 2, 3, 2, 4, 0, 0, 0, 0, 0,
}
,

{
0, 0, 0, 4, 3, 4, 3, 2, 4, 0, 0, 0, 0, 0, 0,
}
,

{
0, 0, 0, 0, 4, 3, 4, 4, 0, 0, 0, 0, 0, 0, 0,
}
,

{
0, 0, 0, 1, 1, 4, 3, 3, 4, 0, 0, 0, 0, 0, 0,
}
,

{
0, 0, 1, 1, 1, 0, 4, 4, 3, 4, 0, 0, 0, 0, 0,
}
,

{
4, 4, 1, 1, 0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0,
}
,

{
4, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}
,

{
4, 4, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}
, 
}
; adapter.setArrays(arrays);
 contributionsView.setAdapter(adapter);

?
Achievement get!
?Time to Strike!? 😁

And with AbstractArraysContributionsViewAdapter, you can use other data type T to express Level, just need to overwrite its int mapLevel(T from) method.

4.2 PositionContributionsViewAdapter

Based on (x,y) position, use it with giving to every item a level, default is level 0. Here is a demo?

PositionContributionsViewAdapter adapter =

new PositionContributionsViewAdapter(8, 17);
 adapter.put(0, 4, 4);
 adapter.put(1, 4, 4);
 adapter.put(1, 5, 4);
 adapter.put(2, 5, 4);
 adapter.put(0, 10, 4);
 adapter.put(1, 10, 4);
 adapter.put(1, 9, 4);
 adapter.put(2, 9, 4);
 adapter.put(4, 7, 4);
 adapter.put(4, 3, 1);
 adapter.put(5, 4, 2);
 adapter.put(6, 5, 3);
 adapter.put(6, 6, 4);
 adapter.put(6, 7, 4);
 adapter.put(6, 8, 4);
 adapter.put(6, 9, 3);
 adapter.put(5, 10, 2);
 adapter.put(4, 11, 1);
 contributionsView.setAdapter(adapter);

?

4.3 DateContributionsAdapter

Use DateContributionsAdapter, you can easily to get a Contributions View like Github. Its row value is already be set to 7 (days of a week).

DateContributionsAdapter adapter = new DateContributionsAdapter() ; adapter.setWeekCount(10);
 adapter.setEndDay("2016-11-20");
 adapter.put("2016-10-17", 1);
 adapter.put("2016-10-18", 2);
 adapter.put("2016-10-19", 3);
 adapter.put("2016-10-20", 4);
 adapter.put("2016-10-21", 3);
 adapter.put("2016-10-22", 3);
 adapter.put("2016-10-27", 1);
 adapter.put("2016-10-28", 1);
 adapter.put("2016-10-20", 1);
 adapter.put("2016-11-19", 2);
 adapter.put("2016-11-18", 4);
 contributionsView.setAdapter(adapter);

?

4.4 Custom Adapter by yourself

You can custom an Adapter very easily by yourself, just need to extends BaseContributionsViewAdapter, and overwrite some methods.

// get row  public abstract int getRowCount();
 // get column  public abstract int getColumnCount();
 // get level?-1~4? public abstract int getLevel(int row, int column);

The build-in TestContributionAdapter is a simple demo?

public class TestContributionAdapter extends BaseContributionsViewAdapter {

  private int row;
  private int column;

public TestContributionAdapter() {
 this(7,20);
 
}

public TestContributionAdapter(int row, int column) {

super();

this.row = row;

this.column = column;
  
}

@Override
  public int getRowCount() {
 return this.row; 
}

@Override
  public int getColumnCount() {
 return this.column; 
}

@Override
  public int getLevel(int row, int column) {

return (int) (Math.random() * 100) % 10;
  
}
 
}

5. Custom Item Style?Canvas?

[Since version 0.2]
You can get Canvas of view item, and so that you are able to custom any style as you want? Demo?
?

TestContributionAdapter adapter = new TestContributionAdapter(5, 5);
 adapter.setOnDrawItemListener(new TContributionsView.OnDrawItemListener() {

  // called before the default drawItem method
  @Override
  public boolean beforeDrawItem(RectF rect, Canvas canvas, Paint paintByLevel, int level) {

// True will not called default drawItem method, false otherwise.

return true;
  
}

  //called after the default drawItem method
  @Override
  public void afterDrawItem(RectF rect, Canvas canvas, Paint paintByLevel, int level) {

// Draw a Regular polygon inside the giving Rect area

CanvasUtil.drawPolygon(rect,canvas,paintByLevel,level+3);

  
}
 
}
);
 contributionsView.setAdapter(adapter);

6. Change Log

V 0.2

Add custom item style: adapter.setOnDrawItemListener

V 0.1

Basic

7. About me

"barryhappy2010#gmail.com".replace("#","@")


8. License

Copyright 2016 Barry Zhang  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. 

Resources

Asks the user if (s)he wants to open the Play Store to rate your application when certain requirements are met. This can and should be configured to be very cautious. Don't annoy your users!

Infer is a static analysis tool for Java, Objective-C and C, written in OCaml.

You have a small team. Setting up crash reporting tools, event tracking tools, and log management services is not what you want to spend your hours doing. You know these are important to the health of your application, but you just want to code.

That's where Foam comes into play.

This app is a simple Bluetooth connection debugging tool:

  • Connect to a Bluetooth device
  • Display incoming raw data
  • Send raw data to the Bluetooth device

Android library project that intends to simplify the usage of Adapters for ListView/GridView and RecyclerView. You won't have to code any boring adapter again!

Quote it is a social platform for sharing quotes and wise sayings. It is great to share and spread the wisdom and thought full.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes