- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to make the textview blinking in android?
This example demonstrate about how to make the textview blinking in android.
Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.
Step 2 − Add the following code to res/layout/activity_main.xml.
<?xml version = "1.0" encoding = "utf-8"?> <RelativeLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:gravity = "center" android:layout_height = "match_parent"> <TextView android:id = "@+id/text" android:textSize = "20dp" android:textAlignment = "center" android:layout_width = "match_parent" android:text = "Text blinking animation" android:layout_height = "wrap_content" /> </RelativeLayout>
In the above code, we have taken one text view to show blinking animation.
Step 3 − Add the following code to src/MainActivity.java
package com.example.andy.myapplication; import android.os.Handler; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import android.view.animation.ScaleAnimation; import android.view.animation.TranslateAnimation; import android.widget.Button; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); blinkTextView(); } private void blinkTextView() { final Handler handler = new Handler(); new Thread(new Runnable() { @Override public void run() { int timeToBlink = 1000; try{Thread.sleep(timeToBlink);}catch (Exception e) {} handler.post(new Runnable() { @Override public void run() { TextView txt = findViewById(R.id.text); if(txt.getVisibility() = = View.VISIBLE){ txt.setVisibility(View.INVISIBLE); } else { txt.setVisibility(View.VISIBLE); } blinkTextView(); } }); } }).start(); } }
To provide blink animation to text view use the following code -
private void blinkTextView() { final Handler handler = new Handler(); new Thread(new Runnable() { @Override public void run() { int timeToBlink = 1000; try{Thread.sleep(timeToBlink);}catch (Exception e) {} handler.post(new Runnable() { @Override public void run() { TextView txt = findViewById(R.id.text); if(txt.getVisibility() = = View.VISIBLE) { txt.setVisibility(View.INVISIBLE); } else { txt.setVisibility(View.VISIBLE); } blinkTextView(); } }); } }).start(); }
Let's try to run your application. I assume you have connected your actual Android Mobile device with your computer. To run the app from android studio, open one of your project's activity files and click Run icon from the toolbar. Select your mobile device as an option and then check your mobile device which will display your default screen −
In the above result, text view is going to blink using show and hide of view.
Click here to download the project code
- Related Articles
- How to make count animation in Android TextView?
- How to make a specific text on TextView bold in Android?
- How to make Animate text from one TextView to another in Android?
- How to make a specific text on TextView bold in Android using Kotlin?
- How to use charAt() in Android textview?
- How to use compareTo () in Android textview?
- How to use endsWith () in Android textview?
- How to use equals () in Android textview?
- How to use equalsIgnoreCase () in Android textview?
- How to use getChars() in Android textview?
- How to use indexOf () in Android textview?
- How to use isEmpty() in Android textview?
- How to use lastIndexOf () in Android textview?
- How to use length () in Android textview?
- How to use replace () in Android textview?
