Skip to content

Fole is a simple library to collapse and expand a TextView.

License

Notifications You must be signed in to change notification settings

naseemakhtar994/fole

 
 

Repository files navigation

Fole Tweet

Fole is a simple library that handles a toggle for you, to expand and collapse a TextView.

Please, star this repo if you find it useful. 🙃


DemoInstallingBasic UsageAnimations


Demo

Installing

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

    dependencies {
        implementation 'com.github.bffcorreia:fole:1.0.0'
    }

Basic Usage

    Fole.with(yourTextView).text("Your text...").maxLines(4).toggleView(yourToggleView);
    Fole.with(yourTextView).text("Your text...").maxChars(50).toggleView(yourToggleView);

Ellipsis Placeholder

    Fole.with(yourTextView).maxLines(4).ellipsisPlaceholder("###").toggleView(yourToggleView);

Callback

If you want to know when the TextView expands or collapses just add a FoleCallback.

    FoleCallback callback = new FoleCallback() {
          @Override public void onTextExpand() {
            // Handle onTextExpand!
          }
    
          @Override public void onTextCollapse() {
             // Handle onTextCollapse!
          }
        };
    Fole.with(yourTextView).maxLines(4).toggleView(yourToggleView, callback);

Animations

To animate the TextView when it extends or collapses, simply add your animation.

    Animation animation = AnimationUtils.loadAnimation(context, android.R.anim.fade_in);
    Fole.with(yourTextView)
        .maxLines(4)
        .animation(animation)
        .toggleView(yourToggleView);

If you want to use different animations:

    Animation expandAnimation = AnimationUtils.loadAnimation(context, android.R.anim.fade_in);
    Animation collapseAnimation = AnimationUtils.loadAnimation(context, android.R.anim.slide_in_left);
    Fole.with(yourTextView)
        .maxLines(4)
        .expandAnimation(expandAnimation)
        .collapseAnimation(collapseAnimation)
        .toggleView(yourToggleView);

License

Copyright 2016 Bruno Correia

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

Fole is a simple library to collapse and expand a TextView.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 71.4%
  • Ruby 28.6%