Welcome to

w3study.github.io





Android Advanced UI Components in Hindi


Time and Date Picker:


DatePickerDialog का basic code example:

DatePickerDialog datePickerDialog = new DatePickerDialog(this,
    (view, year, month, dayOfMonth) -> {
        // यहाँ date मिलने के बाद क्या करना है वो लिखते हैं
    }, 2025, 4, 6);  
datePickerDialog.show();


TimePickerDialog का basic code example:

TimePickerDialog timePickerDialog = new TimePickerDialog(this,
    (view, hourOfDay, minute) -> {
        // यहाँ time मिलने के बाद क्या करना है वो लिखते हैं
    }, 12, 30, true);  
timePickerDialog.show();


ListView


GridView


CardView


RecycleView



Contact Us

Email: deepanshuranjan8057@gmail.com

Whatsapp: +91 8057754706


Follow Us

Facebook Logo    Instagram Logo

IMED Notes in Hindi

Introduction to Android in Hindi

Dalvik Vartual Machine in Hindi

Basic Building Blocks in Android in Hindi

Fundamentals of android in Hindi

apk file extension in Hindi

UI components in Hindi

Components for communication in Android in Hindi

Android API Levels in Hindi

Setting up development environment in Hindi

Manifest.xml in Hindi

Resources & R.java in Hindi