Posts

Showing posts from December, 2016

Grails - Introduction

I would like to give you a little introduction of grails in newbie term. If you have decided to start doing web development or learning web development in java then Grails is for sure an good candidate for you to pick and learn Grails provide the framework based on following 1. Hibernate - ORM layer 2. Groovy Server Pages - Presentation/Web layer 3. Spring - Controller layer Why I started to learn grails has a different reason ;) but would suggest techies to just have a look if you choose to go with Java Web Project and would like to reduce some development time

Mobile Application - Change Icon using android Studio

Image
Use below step to change icon of your mobile application using Android Studio. Open your android application project in android studio On res folder right click and select new image asset             3.Select asset type as image and browse to select the new icon file         4.Android studio will warn you of a file override. Click finish to continue

Android studio failed to display design mode

Image
While staring my basic application I was unable to view the layout xml in design mode. Following was my configuration. Android Studio 2.1.3 Created new project with empty activity Clicked on res/layout/activity_main.xml and tried to open and found exception java.lang.NoSuchMethodError: android.graphics.drawable.VectorDrawable_ android studio....... on clicking details I found following detail exception java.lang.NoSuchMethodError: android.graphics.drawable.VectorDrawable_Delegate.nDraw(JJJLandroid/graphics/Rect;ZZ)I at android.graphics.drawable.VectorDrawable.nDraw(VectorDrawable.java) at android.graphics.drawable.VectorDrawable.draw(VectorDrawable.java:304) at android.widget.ImageView.onDraw(ImageView.java:1286) at android.view.View.draw(View.java:17056) at android.view.View.draw(View.java:16964) at android.view.ViewGroup.drawChild_Original(ViewGroup.java:3715) at android.view.ViewGroup_Delegate.drawChild(ViewGroup_Delegate.java:61) at android.view.ViewGr