TRENDING NEWS

POPULAR NEWS

What Are Enums In Xsd

How do I convert XMLGregoriancalendar to date in Java?

Here is way to convert xmlgregoriancalendar to date:GregorianCalendar cal = new GregorianCalendar();
XMLGregorianCalendar xmlCalendar = DatatypeFactory.newInstance().newXMLGregorianCalendar(cal);
Date date = xmlCalendar.toGregorianCalendar().getTime();
I found it from the post Convert XMLGregorianCalendar to Date in Java

What are best tips to reduce the size of an Android APK?

Tips to reduce android APK size support only specific densities. So, let’s see few tips to reduce your Android APK size- Android is supporting the vector drawable for oldest version- Allows APK split for specific density and ABIs- Optimizing image file ensuring image quality- Remove unused resources- Compress images- Duplicate functionality avoidThe APK analyzer tool through the built in the android studio. This app in below other notes like- Test data, APK does not use Proguard, and it also minifiy code and can remove unused classes & files.That is many great apps size, improve with just these few suggestions.

TRENDING NEWS