summaryrefslogtreecommitdiffstats
path: root/actionbarsherlock/src/com/actionbarsherlock/internal/view/View_OnAttachStateChangeListener.java
blob: 3869d32907fef3345c913e1dd2e0ee2243831d3f (plain)
1
2
3
4
5
6
7
8
package com.actionbarsherlock.internal.view;

import android.view.View;

public interface View_OnAttachStateChangeListener {
    void onViewAttachedToWindow(View v);
    void onViewDetachedFromWindow(View v);
}