Search Results For: "Android"

How to remove icon animation for bottom navigation view in android
Image December 8, 2018 Android Development,Development Pushpendra Kumar

You might be facing this issue if you are using more than three menu item in your bottom navigation, So let’s have look at how to solve this issue in a very simple way! The code of your main activity xml file. <!–?xml version=”1.0″ encoding=”utf-8″?–> <android.support.constraint.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_layout” android:layout_width=”match_parent” android:layout_height=”match_parent” tools:context=”pushpendra.wepsapps.activities.MainActivity”> <Relativelayout android:layout_width=”match_parent”

Details
How to give bounce animation in android on click?
Image December 7, 2018 Android Development,Development Pushpendra Kumar

Nice move towards animation! This is the basic tutorial which will help you to understand the basic bounce animation in the android studio. This tutorial is written into Android studio with java. I hope you are on screen and you have already created a view or button which you want to animate on click or

Details
How to work with scroller view in android?
Image December 7, 2018 Android Development Pushpendra Kumar

ScrollerView If you want to become a good developer then you must understand the hierarchy of the views. Here we have one most important topic to discuss with you and which is based on the scroller view. So let’s learn the scroller view hierarchy. The android.widget.ScrollView class provides the functionality of scroll view. ScrollView is

Details
How to work with back button in android with multiple fragment
Image December 6, 2018 Android Development,Development Pushpendra Kumar

How to work with back button in android with multiple fragment When I was developing the Android application I found the very common issue. That was, how to manage back button navigation if I am using multiple fragments. On some particular fragment, I want to show the back button but on some fragment, I don’t

Details
How to use gradient in CardView android?
Image December 5, 2018 Android Development Pushpendra Kumar

I am sure you are looking for a view with elevation. First of all, I would like to clear your doubt. You can not use any costume background or any costume drawable to cardview directly. If you will use then you will lose the CardView effect. So now there is a question in front of

Details
Why the Android emulator work so slow?
Image December 4, 2018 Android Development,Development,Research And News Pushpendra Kumar

My Story of Android Virtual Device 😊😊😊😊😊☺️🇮🇳😊😊 I was trying to build an android application with the help of a tutorial before a few years ago. Then I did not know that, how to build the android application and where to build the android application. After a long research on the internet, I found that

Details
Build Roll a ball for android or iOS in Unity
Image December 3, 2018 Android Development,Game Development,iOS Development Pushpendra Kumar

Have you done with the standalone programming? Yes! If you are looking for this issue then I make sure then you have done with the official unity tutorial. In the official tutorial they have described everything but at the end, they have missed how you can run your game on the android device. For the

Details
How to start with ML in android – Part 2
Image November 25, 2018 Android Development,Development Pushpendra Kumar

In this chapter I am going to cover Landmark detection in image. Before coming to this chapter you have to go through with How to start with ML in android – Part 1. Because in that post I have already covered the basic integration of ML. Now I am going to tell you solution for

Details
How to start with ML in android – Part 1
Image November 24, 2018 Android Development,Development Pushpendra Kumar

Let’s begin with the ML, Here you will learn how to work with machine learning. And in my android application tutorial I am taking base is Firebase ML Kit. If you want to know more about machine learning then you can click here. So in a very simple way let’s start with the following steps.

Details
How to save activity state using Save Instance State in android
Image November 23, 2018 Android Development Pushpendra Kumar

I’ve been working on Android SDK platform, and it is a little unclear how to save an application’s state. So I have search on that and Finlay come to the solution which is sharing with you on this post. You need to override onSaveInstanceState(Bundle savedInstanceState) and write the application state values you want to change

Details