Tag: Android Studio

Tag: Android Studio

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 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 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