https://github.com/apachecn-archive/shinebutton

https://github.com/apachecn-archive/shinebutton

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.6%) to scientific vocabulary
Last synced: 6 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: apachecn-archive
  • License: mit
  • Language: Java
  • Default Branch: master
  • Size: 2.39 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created almost 3 years ago · Last pushed almost 3 years ago
Metadata Files
Readme License

README.md

ShineButton

license platform Build Status Android Arsenal API

This is a UI lib for Android. Effects like shining.

preview

Usage

java shineButton = (ShineButton) findViewById(R.id.shine_button); shineButton.init(activity); or

java ShineButton shineButtonJava = new ShineButton(this); shineButtonJava.setBtnColor(Color.GRAY); shineButtonJava.setBtnFillColor(Color.RED); shineButtonJava.setShapeResource(R.raw.heart); shineButtonJava.setAllowRandomColor(true); LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(100, 100); shineButtonJava.setLayoutParams(layoutParams); if (linearLayout != null) { linearLayout.addView(shineButtonJava); }

Simple Usage

Icon shape is made from png mask. Please see raw files. shell app:siShape

Default button color. shell app:btn_color Fill button color. shell app:btn_fill_color If this property is true,the effects will become random color shine. shell app:allow_random_color

preview

xml <com.sackcentury.shinebuttonlib.ShineButton android:layout_width="50dp" android:layout_height="50dp" android:layout_centerInParent="true" android:src="@android:color/darker_gray" android:id="@+id/po_image2" app:btn_color="@android:color/darker_gray" app:btn_fill_color="@android:color/holo_green_dark" app:allow_random_color="false" app:siShape="@raw/smile"/>

Complex Usage

| Property | Java method | Description | | ------------------------ | ------------------------------------ | -------------------------------------------- | | siShape | void setShapeResource(int) | Set raw resource (png) | | btncolor | void setBtnColor(int) | Set origin color | | btnfillcolor | void setBtnFillColor(int) | Set fill color after click | | allowrandomcolor | void setAllowRandomColor(boolean) | Allow shine color random | | shineanimationduration | void setAnimDuration(int) | Set shine anim duration | | bigshinecolor | void setBigShineColor(int) | Set big shine color | | clickanimationduration | void setClickAnimDuration(int) | Set click anim duration | | enableflashing | void enableFlashing(boolean) | Enable effect like flash | | shinecount | void setShineCount(int) | Set shine count around button | | shinedistancemultiple | void setShineDistanceMultiple(float) | Set multiple of distance to button | | shineturnangle | void setShineTurnAngle(float) | Set turn angle of shine | | shinesize | void setShineSize(int) | Set size of shine by pixel | | smallshinecolor | void setSmallShineColor(int) | Set small shine color | | smallshineoffset_angle | void setSmallShineOffAngle(float) | Set angle offset of small shine to big shine |

shell app:shine_turn_angle="20" app:shine_count="15" app:allow_random_color="true" app:enable_flashing="true" preview

xml <com.sackcentury.shinebuttonlib.ShineButton android:layout_width="50dp" android:layout_height="50dp" android:layout_centerInParent="true" android:src="@android:color/darker_gray" android:id="@+id/po_image1" app:btn_color="@android:color/darker_gray" app:btn_fill_color="#FF6666" app:allow_random_color="false" app:enable_flashing="false" app:big_shine_color="#FF6666" app:click_animation_duration="200" app:shine_animation_duration="1500" app:shine_turn_angle="10" app:small_shine_offset_angle="20" app:shine_distance_multiple="1.5f" app:small_shine_color="#CC9999" app:shine_count="8" app:siShape="@raw/like"/>

Support Dialog

When use button on a Dialog

```java shineButton.setFixDialog(dialog);

``` Easy to support.

Requirements

  • Android 4.0+

Code Reference

android-shape-imageview EasingInterpolator

Maven

xml <dependency> <groupId>com.sackcentury</groupId> <artifactId>shinebutton</artifactId> <version>1.0.0</version> <type>aar</type> </dependency>

Gradle

gradle buildscript { repositories { mavenCentral() } } dependencies { compile 'com.sackcentury:shinebutton:1.0.0' }

Credits

iOS lib fave-button Android implement. FaveButton was inspired by Twitter’s Like Heart Animation;

Third Party Bindings

React Native

You may now use this library with React Native via the module here

License

The MIT License (MIT)

Copyright (c) 2016 Chad Song 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Owner

  • Name: ApacheCN 归档
  • Login: apachecn-archive
  • Kind: organization
  • Email: wizard.z@qq.com

防止重要项目丢失而设立的归档

GitHub Events

Total
Last Year

Dependencies

app/build.gradle maven
  • com.sackcentury:shinebutton 1.0.0 compile
  • androidx.appcompat:appcompat 1.5.1 implementation
  • androidx.cardview:cardview 1.0.0 implementation
  • androidx.constraintlayout:constraintlayout 2.1.4 implementation
  • junit:junit 4.13.2 testImplementation
build.gradle maven
shinebuttonlib/build.gradle maven
  • androidx.appcompat:appcompat 1.5.1 implementation
  • com.daasuu:EasingInterpolator 1.3.0 implementation
  • junit:junit 4.13.2 testImplementation