I am using Google notifications in my app, and until now I have done below in the manifest: <!-- GCM --> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google...
  • June 4, 2022
  • 0 Comments
IT Nursery
I’m trying to create a custom view GhostSurfaceCameraView that extends SurfaceView. Here’s my class definition file GhostSurfaceCameraView.java: public class GhostSurfaceCameraView extends SurfaceView implements SurfaceHolder.Callback { SurfaceHolder mHolder; Camera mCamera;...
  • June 4, 2022
  • 0 Comments
IT Nursery
I am wondering how to add shadow on text in android? I have the following code which is applied on a bitmap and I wanted to be shadowed… paint.setColor(Color.BLACK);...
  • June 4, 2022
  • 0 Comments