Skip to main content

The Pause Was Unplanned. The Return Is Intentional

 Why I stepped away, what I learned, and where this blog goes from here.

Returning After a Long Absence — And Why It Matters

It has been quite some time since I last published here, and I think that deserves a straightforward acknowledgment before anything else.

Over the past years, my attention was pulled in several directions — professional commitments, ongoing projects, and the kind of sustained workload that quietly pushes non-urgent priorities to the back of the queue. Writing, unfortunately, became one of them.

What I did not anticipate was how much I would miss it.

This space was built on a simple premise: to share ideas, perspectives, and insights worth putting into words. That premise has not changed. If anything, the time away has given me a clearer sense of what I want this blog to be — more intentional, more focused, and more consistent.

I am not returning with a promise of a rigid posting schedule or a dramatic reinvention. What I am returning with is a renewed commitment to showing up here regularly and contributing something genuinely worth your time.

There is no shortage of topics I have been meaning to write about. Consider this post the first step toward doing exactly that.

Thank you for your patience, and welcome back.

— Dhaval Parmar

Comments

Popular posts from this blog

Multi-Selection ListView ANDROID with CheckBox PART-2

Check Below Code : mainActivity.java package com.example.listviewcheckbox; import java.util.ArrayList; import android.app.Activity; import android.content.Context; import android.graphics.Bitmap; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.CheckBox; import android.widget.ImageView; import android.widget.ListView; import android.widget.TextView; import android.widget.Toast; public class MainActivity extends Activity { private ListView listview; ArrayList<String> items = new ArrayList<String>(); private int count; private boolean[] thumbnailsselection; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(...

Multi-Selection ListView ANDROID with CheckBox

Shaadi.com Indian Matrimonials Download code Create New Android Project: in res/layout/main.xml create new layout for list row : in res/layout/list_row.xml in your Main Activity Class: Create Class name mItems: Create New Class name SelectViewHolder: Create New Class name SelectArrayAdapter: Download Source Code Click Here : Check PART2 for more detail. Shaadi.com Matrimonials

Android - Notifications - 3 (Applying a big view style to a notification)

Big picture style Bitmap icon1 = BitmapFactory.decodeResource(getResources(), R.drawable.dhaval1); NotificationCompat.Builder mBuilder = new NotificationCompat.Builder( this).setAutoCancel(true) .setContentTitle("DJ-Android notification") .setSmallIcon(R.drawable.ic_launcher).setLargeIcon(icon1) .setContentText("Hello World!"); NotificationCompat.BigPictureStyle bigPicStyle = new NotificationCompat.BigPictureStyle(); bigPicStyle.bigPicture(icon1); bigPicStyle.setBigContentTitle("Dhaval Sodha Parmar"); mBuilder.setStyle(bigPicStyle); // Creates an explicit intent for an Activity in your app Intent resultIntent = new Intent(this, testActivity.class); // The stack builder object will contain an artificial ba...