Avatar
☠️

Find Me On

README.md

Typing SVG

package com.rejowan

class Rejowan {

    fun Details() {
        val name = "K M Rejowan Ahmmed"
        val occupation = "Software Engineer | Mobile App Developer"
        val address = "Dhaka, Bangladesh"
        val experiences = "5 years +"
    }

    fun TechStacks() {
        listOf("Android", "Flutter",
            "Java", "Kotlin", "Dart"
            "Jetpack Compose", "XML",
            "MVVM", "MVP",
            "RESTful API", "JSON",
            "Retrofit", "OkHttp", "Volley",
            "Coroutines", "Multi-threading",
            "Room", "SQLite",
            "Firebase", "Play Service", "Appwrite")
    }
}

Pinned

  1. The Android activity lifecycle manages the states an activity goes through, from creation to destruction, enabling efficient resource management and seamless user experience.

    Android Lifecycle

Recent posts

  1. Learn to create a custom Android ViewPager that uses single-tap gestures for navigation. Tapping the screen’s left or right halves moves pages backward or forward, enhancing accessibility and user convenience. Code samples and use cases included.

    Android Viewpager Custom Viewpager

  2. MaterialCardView extends CardView with extra features like stroke color, checkable state, and customizable ripple effects, making it more suited for modern Android apps following Material Design guidelines.

    Android Material Design CardView

  3. The Android activity lifecycle manages the states an activity goes through, from creation to destruction, enabling efficient resource management and seamless user experience.

    Android Lifecycle

  4. Add extra bottom margin to the last item in a RecyclerView by modifying LayoutParams in onBindViewHolder(). Adjust margins for the last item and others using conditional logic for a clean, customized UI.

    Android RecyclerView Extra Margin Java

    Post activity