Monday, 28 July 2025

How to Blink a Text

 Blinking a text in Android is very simple and needs very less code. Let's see how to make it!

 


In the activity_main.xml file you have to edit the android:text and add just these two lines under TextView tag:

android:id="@+id/textView"
android:textSize="40sp"
android:text="I AM BLINKING!"

So after making the changes, the activity_main.xml file will have these things:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView"
android:textSize="40sp"
android:text="I AM BLINKING!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>


Now inside the MainActivity.java, below the setContentView method, just paste this code and you are done:

TextView blinkingText = findViewById(R.id.textView);
Animation blinkAnimation = new AlphaAnimation(0.0f, 1.0f);
blinkAnimation.setDuration(1000); // duration
blinkAnimation.setStartOffset(20);
blinkAnimation.setRepeatMode(Animation.REVERSE);
blinkAnimation.setRepeatCount(Animation.INFINITE);

Understand the code:

TextView blinkingText = findViewById(R.id.textView);

→ Retrieves the TextView with ID textView from the layout and stores it in blinkingText.


Animation blinkAnimation = new AlphaAnimation(0.0f, 1.0f);

→ Creates an alpha animation that changes the opacity from fully transparent to fully opaque.


blinkAnimation.setDuration(1000);

→ Sets the duration of one animation cycle to 1000 milliseconds (1 second).


blinkAnimation.setStartOffset(20);

→ Adds a 20-millisecond delay before the animation starts.


blinkAnimation.setRepeatMode(Animation.REVERSE);

→ Makes the animation reverse back to the start after reaching the end.


blinkAnimation.setRepeatCount(Animation.INFINITE);

→ Repeats the animation endlessly.


Finally the MainActivity.java will have this complete code:

package com.prashantsj.apps.blink;

import android.os.Bundle;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.widget.TextView;

import androidx.activity.EdgeToEdge;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.graphics.Insets;
import androidx.core.view.ViewCompat;
import androidx.core.view.WindowInsetsCompat;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EdgeToEdge.enable(this);
setContentView(R.layout.activity_main);

TextView blinkingText = findViewById(R.id.textView);
Animation blinkAnimation = new AlphaAnimation(0.0f, 1.0f);
blinkAnimation.setDuration(1000); // duration
blinkAnimation.setStartOffset(20);
blinkAnimation.setRepeatMode(Animation.REVERSE);
blinkAnimation.setRepeatCount(Animation.INFINITE);

blinkingText.startAnimation(blinkAnimation);

ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main), (v, insets) -> {
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
return insets;
});
}
}


Wednesday, 16 July 2025

How to download and install the Android Studio Narwhal

 We know that Android Studio has launched its new version which is Narwhal. So let's download it step by step.



1. At first type "download android studio" in Google search and hit Enter.


2. Then in the search result, select the first one as shown in the image.



3. This will take you to the official website of Android Studio. Here click on the "Download Android Studio Narwhal" button. It will show a pop-up of Terms & Conditions.



4. Read and tick the checkbox which says "I have read and agree with the above terms and conditions". Finally click the Download Android Studio for Windows button. 



5. Save the .exe file where ever you want. It will take time to download as per you internet speed.



6. Once the download is over, open the .exe file. You can open it directly by clicking on the Chrome's download history.



7. Now you will see a installer window. Just keep selecting the Next option every time which is the Recommended setting by Android.



8. You can set the path that you want by clicking the Browse option. If you are fine with the default one, then hit Next.



9. The progressive bar shows that the installation has started and once it will over, it will stop.

 



10. Now click the Next option again to complete the process.



11. Click the Finish button to finish the total installation. Selecting the checkbox Start Android Studio will start the Android Studio right away.



12. Congratulations! Android Studio installed and it is opening!





Sunday, 24 March 2024

Understanding the Android Studio Iguana

 Hi friends, as we know that Android always brings new things in its updates so today we will know what is in the Android Studio Iguana. Also we are going to open a project which will help us write code in Java and not in Kotlin. This is tricky, so be there!

The link to download Android Studio is THIS.

Here is the loading screen of the Android Studio Iguana with its version 2023.2.1 mentioned in it.



Once the loading is done, you will find the Welcome screen with various tabs. Let's start with Projects first:

On the left side we have Projects and other options. First lets see what is inside Project.
New Project: Nothing new, just create a new project either in Kotlin or Java (we will get to the point how we can create a Java project).

Open: Just open the existing Android Studio project from a directory.

Get from VCS: VCS is nothing but Version Control System. You can get a project downloaded through this and GIT would be a common example of it.

There are yet more actions to be performed. Clicking on the same you will find four more things to do:

Import an Android Code Sample: Here you have option to import code samples and run them.

Profile or Debug APK: This is a very interesting tool which will help you in debugging your apk with least efforts.

Virtual Device Manager: Nothing new in this, you know how to check your apps on various configurations. This is what it has!

SDK Manager: This is also inherited from the previous Android Studios. The software development kit that has various SDK platforms, tools etc. 


Here is a quick look of the welcome screen when we have at least one project.



Now comes the next option Customize:

Many user prefer customizing IDEs as per their comfort:

Color Theme: You can make your Android Studio Light, Dark, High contrast etc. The best from most of the developer's view would be Dark as it does not create eye itching issues. 

Sync with OS: By checking this option you don't have to manually change the theme color. It will. automatically select by observing your syste settings.


IDE font: The font size that you want to keep for your IDE. Don't make it 72. I did that and then could not able to change it for a long time because the IDE expanded so that it covered all of my screen.

Keymap: As you can see in the image, you have options to set your keymap to macOS or Eclipse or Visual Studio etc.


Plugins: Plugings are used to add new features or enhance the application. In this you will find various plugings such as Genymotion which will help your app run in various emulators. You can also create Flutter apps by installing this plugin.


Learn: Android Studio has a Learn option which will help us learning it through videos, web articles and also it has a keyboard shortcuts pdfs which will be very useful for all the Android developers.



Settings: The very left down bottom of the welcome screen, you will get a settings icon. Clicking it shows these four options:

Edit custom properties: Through this you have access to change the properties of Android Studio IDE.

Edit custom VM options: The virtual machine properties can be edited through this option.

Collect logs and Diagnostic Data: This has various checks asking you if you want to see the logs and analize the data.


Okay friends we just had a bird's eye on the basic Android Studio IDE. Now we will learn

How to create a project that will allow us to write code in Java.

At first when you open Android Studio and click on New Project you will see that there is no way to code in Java because there will be only Kotlin to code. Those who are Java fans would really have tough time here. So let's see what is needed to get the Java environment working!

After clicking on New Project, we often click on Empty Activity or Basic Views Activity. This creates a Kotlin project. We only have to click the Empty Views Activity to create one for Java.


After clicking the Next button, on configuration screen you have to Select Java for the Language option. At last in Build configuration language, select Groovy DSL (build.gradle).



Congratulations! You can now code in Java for Android Studio.