Files
device_oplus_camera/oplus-fwk/src/com/oplus/screenshot/OplusLongshotViewBase.java
2024-08-20 08:41:09 +05:30

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();
}