项目作者: sarnavakonar

项目描述 :
Animate your texts like never before
高级语言: Java
项目地址: git://github.com/sarnavakonar/TextWriter.git
创建时间: 2020-01-22T11:53:57Z
项目社区:https://github.com/sarnavakonar/TextWriter

开源协议:

下载


" class="reference-link">TextWriter gif Tweet Android Arsenal

:fire: Animate your text like never before :fire:

Basic animation Animation use e.g. - 1
gif gif

Add dependency

Add this in your root build.gradle at the end of repositories:

  1. allprojects {
  2. repositories {
  3. ...
  4. maven { url 'https://jitpack.io' }
  5. }
  6. }

Add this in your app level gradle:

  1. implementation 'com.github.sarnavakonar:TextWriter:v1.0'

Initialization

Add TextWriter in your xml file:

  1. <com.sarnava.textwriter.TextWriter
  2. android:id="@+id/textWriter"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent" ></com.sarnava.textwriter.TextWriter>

Initialize in the Activity file:

  1. TextWriter textWriter;
  2. textWriter = findViewById(R.id.textWriter);

Customization

Customize according to your need (as of now it supports only uppercase letters and whitespace :broken_heart:):

  1. textWriter
  2. .setWidth(12)
  3. .setDelay(30)
  4. .setColor(Color.RED)
  5. .setConfig(TextWriter.Configuration.INTERMEDIATE)
  6. .setSizeFactor(30f)
  7. .setLetterSpacing(25f)
  8. .setText("LIVERPOOL FC")
  9. .setListener(new TextWriter.Listener() {
  10. @Override
  11. public void WritingFinished() {
  12. //do stuff after animation is finished
  13. }
  14. })
  15. .startAnimation();

Because of different screen resolutions of different devices, try to avoid using constant values for width, sizeFactor and letterSpacing. Instead use some fraction of the screenWidth for consistent result across multiple devices.

Contributing :heart_eyes:

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

  1. MIT License
  2. Copyright (c) 2020 Sarnava Konar
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in all
  10. copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  17. SOFTWARE.