Blocking touch input through Android View

Currently I added a view on to the unity’s current activity on android platform.
I made the touches pass to my native view by adding meta tag in manifest.

Now the problem is , unity also considers those touch values instead of ignoring them. When i scroll in the native view, the underlying GUI is getting scrolled as well.

How can I solve this?

Which version of Unity are you using? I assume this is earlier than 5.0.

In that case, you have to host your View in a Dialog or create a new Activity for it.

In 5.0, it should just work out of the box.