Category: Development

Category: Development

How to work with LayoutInflater in Kotlin
Image December 19, 2018 Development Pushpendra Kumar

Typically, you don’t ever need to directly use a LayoutInflater. Android does most of the layout inflation for you when you call setContentView() in the onCreate() method of your activity. So you, as the programmer, are responsible for making sure the views are inflated. Now you want to inflate views in the context of a

Details
How to Work with volley in Kotlin
Image December 18, 2018 Development Pushpendra Kumar

Great Choice..!! Here you will learn how to work with Google Volley Library for fetching the data from the server into Android application development. Google officially announced Kotlin Support at Google I/O 2017. If you havenโ€™t heard it yet, Kotlin is the brand new language for Android Application Development. It is developed by IntelliJ IDEA

Details
Create Space shooter game
Image December 17, 2018 Development,Game Development Pushpendra Kumar

Let’s start with something creative and new! In this tutorial, you will learn the basics of Unity 3D game development kit. I am going to create the new project with space shooter. So you people just follow the steps of this tutorial, I make sure you will become professional after doing this workโ€ฆ!! Open Unity

Details
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