| 29 | private View mLastView; |
| 30 | |
| 31 | public interface Effect { |
| 32 | public void onFocusChanged(View target, View oldFocus, View newFocus); |
| 33 | |
| 34 | public void onScrollChanged(View target, View attachView); |
| 35 | |
| 36 | public void onLayout(View target, View attachView); |
| 37 | |
| 38 | public void onTouchModeChanged(View target, View attachView, boolean isInTouchMode); |
| 39 | |
| 40 | public void onAttach(View target, View attachView); |
| 41 | |
| 42 | public void OnDetach(View targe, View view); |
| 43 | |
| 44 | public <T> T toEffect(Class<T> t); |
| 45 | } |
| 46 | |
| 47 | public BorderView(Context context) { |
| 48 | this(context, null, 0); |
no outgoing calls
no test coverage detected