Popularity
5.8
Stable
Activity
0.0
Stable
613
29
124

Code Quality Rank: L5
Programming language: Java
License: Apache License 2.0

SecretTextView alternatives and similar packages

Based on the "TextView/EditText Widget" category.
Alternatively, view SecretTextView alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of SecretTextView or a related project?

Add another 'TextView/EditText Widget' Package

README

SecretTextView

Android Arsenal

A TextView that simulates the effect from the app Secret where the characters fade in/out at different speeds.

How To Use

Use it just like a normal TextView for the most part.

    <com.mattkula.secrettextview.SecretTextView
            android:id="@+id/textview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="This is a demo of Matt Kula's Secret TextView"
            android:textSize="30sp"
            android:textColor="@android:color/black"
            />

To fade in or fade out the text:

secretTextView.show();    // fade in
secretTextView.hide();    // fade out
secretTextView.toggle();  // fade in or out depending on current state

To change the duration of the fading (default is 2.5 seconds):

secretTextView.setDuration(3000);     // set fade duration to 3 seconds

To set visibility without fading in or out:

secretTextView.setIsVisible(true);
secretTextView.setIsVisible(false);