Set cursor drawable programmatically in android This below method is use for change cursor drawable programmatically in android. Pass two parameter as argument. 1) Object of EditText. 2) Cursor color. private void setCursorDrawableColor(EditText editText, int color) { try { Field fCursorDrawableRes = TextView.class.getDeclaredField("mCursorDrawableRes"); fCursorDrawableRes.setAccessible(true); int mCursorDrawableRes = fCursorDrawableRes.getInt(editText); Field fEditor = TextView.class.getDeclaredField("mEditor"); fEditor.setAccessible(true); Object editor = fEditor.get(editText); ...
🚨 Important Update for Android Developers: Target API Level 35 Required! 🚨 Google has announced a new policy for Android app developers. If you publish or update apps on the Play Store, this is something you must be aware of. 🎯 What’s Changing? Starting August 31, 2025 , all Android apps (new or updated) must target Android 15 (API Level 35) to be accepted on the Google Play Store. If your app targets anything lower than API 35 after this date, you won’t be able to push updates. This change ensures that all apps follow the latest Android platform standards. 🔒 Why is This Important? Google wants all apps to follow up-to-date security, privacy, and performance practices. Targeting the latest API helps keep apps compatible with new devices and Android versions. 🗓 Important Deadlines Deadline: August 31, 2025 Extension: Request available until November 1, 2025 (via Play Console) 📌 Exceptions Wear OS, Android TV, and Android Automotive apps can stil...
Create custom toast message in android Download Code Hello friends, Maybe you would like to create custom toast message. In the following image you can see how our custom toast message will look like. If you wont to create custom toast message like this, kindly download demo and use this code. I hope this code will help you… Thanks! Download Code
It's working...
ReplyDelete