[Solved] How to make bitmap invisible ontouch in android? [closed]

Do this : @Override public boolean onTouch(final View view, MotionEvent event) { final int action = event.getAction(); int x = event.getX() // or getRawX(); int y = event.getY(); switch(action){ case MotionEvent.ACTION_DOWN: if (x >= xOfYourBitmap && x < (xOfYourBitmap +yourBitmap.getWidth()) && y >= yOfYourBitmap && y < (yOfYourBitmap + yourBitmap.getHeight())) { //You’ve pressed on your … Read more

[Solved] can anyone please tell me how to create a custom datePicker view in android. I have searched the whole google but could not find it. [closed]

You can create your own view using layouts and inject into the view by dialog. On click you can handle the calendar object. 1 solved can anyone please tell me how to create a custom datePicker view in android. I have searched the whole google but could not find it. [closed]