VOOZH about

URL: https://www.geeksforgeeks.org/android/liquid-button-in-android/

⇱ Liquid Button in Android - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Liquid Button in Android

Last Updated : 25 Jul, 2024

In this article we are going to implement a liquid button library, This can be used to show animation on a button. When a user completed a course or completes Filling all the details on a form successfully, then we can show this liquid button to show success in a good way. Let's see the implementation of this feature. A sample GIF is given below to get an idea about what we are going to do in this article. Note that we are going to implement this project using the Java language. 


Step-by-Step Implementation of Liquid Button

Step 1: Create a New Project

To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio article in gfg. Note that select Java as the programming language.

Step 2: Add dependency

Navigate to the Gradle Scripts > build.gradle(Module:app) and add the below dependency in the dependencies section.   

compile 'com.gospelware.liquidbutton:liquidButtonLib:1.1.5'

Step 3: Working with the activity_main.xml file

Navigate to the app > res > layout > activity_main.xml and add the below code to that file. Below is the code for the activity_main.xml file. 


Step 4: Working with theMainActivity.java file

Go to the MainActivity.java file and refer to the following code. Below is the code for the MainActivity.java file. 

Output:



Comment
Article Tags:

Explore