21 lines
412 B
Java
21 lines
412 B
Java
package com.oplus.screenshot;
|
|
|
|
import android.content.Context;
|
|
|
|
public interface OplusLongshotViewBase {
|
|
|
|
boolean canLongScroll();
|
|
|
|
int computeLongScrollExtent();
|
|
|
|
int computeLongScrollOffset();
|
|
|
|
int computeLongScrollRange();
|
|
|
|
boolean findViewsLongshotInfo(OplusLongshowViewInfo oplusLongshowViewInfo);
|
|
|
|
Context getContext();
|
|
|
|
boolean isLongshotVisibleToUser();
|
|
}
|