Im trying to display an avatar pic and Theme pic on my Login Form mobile application on CodeName One like that
Image profilePic = theme.getImage("user-picture.png");
Image mask = theme.getImage("round-mask.jpg");
profilePic = profilePic.fill(mask.getWidth(), mask.getHeight());
Label profilePicLabel = new Label(profilePic, "ProfilePic");
profilePicLabel.setMask(mask.createMask());
but this errors it display to me :
java.lang.NullPointerException
at Activite.gui.LoginForm.<init>(LoginForm.java:54)
** Exactly On**
profilePic = profilePic.fill(mask.getWidth(), mask.getHeight());
N.B The Pictures are in the same folder with the My class