Does Android have a property like clipsToBounds on iOS?
android, ios
Solution
I think `setClipChildren` is what you are looking for. See the documentation here :
http://developer.android.com/reference/android/view/ViewGroup.html#setClipChildren(boolean)
Problem
Does Android have a property like clipsToBounds on iOS; used to display the sub view outside the bounds of the parent view?