
Search In
In the below example I have created Toolbar text animation function. Here In activity_main.xml layout first I have created Toolbar and added a TextView, then In MainActivity I have used ObjectAnimator class. You can see below program it will clearly
In the below example code I have created a Custom Spinner. Here first, I have added spinner library in build.gradle file. After that, I have added Spinner layout in activity_main.xml layout. In MainActivity I have added items name in String.
You can
In the below example I have describes "how to use FlexBox layout". FlexboxLayout extends the ViewGroup like relative layout and linear layout. You can add different attributes to the flexlayout like flexDirection, flexWrap, justifyCon
If you are looking to create BadgeCount view in android toolbar, here is the way to code it:-
Step 1:- Create badgeCount layout file say badgecount.xml :-
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:la
Image Source: https://fossbytes.com
Today more than 1 billion people are actively using WhatsApp to stay in touch with family, friends or anybody they care about. The product is easy to use
I tried to run the below code
public class TestSelendroidApp {
public static AndroidDriver driver;
public static void main(String[] args) throws MalformedURLException, InterruptedException {
File app = new File("E:\software\selendroid-t
In the below example I have created a RecyclerView, In RecyclerView I have added cardView item, so when you click on cardview item it will open next activity.
In below code, first I have added RecyclerView and CardView library , In second step, In a
This blog is about counter badge on icon of Menu . like counter of Notification.
Here is code of this tutorial.
1. Create project.
2. Create text_circle.xml in res->drawable folder.
3. Write below code to text_circle.xml.
<?xml version="1
In the below example I am describing "how to communicate fragments"?, fragment is a part of Activity in android. In one Activity we can use multiple fragment easily and each fragment have it's own functinality. Without activity we can n
In the below example I have created a Text View with Rounded Corners function. Here I have defined style to change background to textview. Below example will clearly describe how to make TextView with Rounded Corners.
Step(1)-MainActivity-
public c