Skip to content

Instantly share code, notes, and snippets.

@AizazZaidee
Created April 14, 2015 07:25
Show Gist options
  • Save AizazZaidee/6317ecbb746403bec3ca to your computer and use it in GitHub Desktop.
Save AizazZaidee/6317ecbb746403bec3ca to your computer and use it in GitHub Desktop.
Expand Touch Delegates of ImateView, TextView, EditText ... any View.class
public static void expandViewTouchDelegate(final View view, final int top,
final int bottom, final int left, final int right) {
((View) view.getParent()).post(new Runnable() {
@Override
public void run() {
Rect bounds = new Rect();
view.setEnabled(true);
view.getHitRect(bounds);
bounds.top -= top;
bounds.bottom += bottom;
bounds.left -= left;
bounds.right += right;
TouchDelegate touchDelegate = new TouchDelegate(bounds, view);
if (View.class.isInstance(view.getParent())) {
((View) view.getParent()).setTouchDelegate(touchDelegate);
}
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment