A peek at the source code shows that View.onDraw() is an empty method. So, calling super.onDraw(), if the parent class is View itself, does nothing. It's unnecessary yet harmless.
Whether you should go ahead and do it anyway is a separate question of efficiency, safety, and style.