All Projects → peter1492 → LongScreenshot

peter1492 / LongScreenshot

Licence: other
This tool makes a number of screenshots, scrolling screen content automatically between each shot

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to LongScreenshot

ScreenKap
A simple screen recorder app for Android
Stars: ✭ 46 (+35.29%)
Mutual labels:  screen-capture, android-studio
AmbulanceLocator
Ambulance Locator lets the user find nearby ambulances and as well as call the nearby ambulances.
Stars: ✭ 15 (-55.88%)
Mutual labels:  android-studio
android-projects
Android benchmark projects for Bazel and Gradle
Stars: ✭ 29 (-14.71%)
Mutual labels:  android-studio
keyboard
A terrible terrible soft-keyboard that randomises keys on every press.
Stars: ✭ 17 (-50%)
Mutual labels:  android-studio
receipt-manager-app
Receipt parser application written in dart.
Stars: ✭ 140 (+311.76%)
Mutual labels:  android-studio
myplanet
🌕 myPlanet android app reads data from 🌎 for offline use as well as it collect usage data and sends them back to the Planet.
Stars: ✭ 17 (-50%)
Mutual labels:  android-studio
FastWaiMai
仿写美团外卖电商项目
Stars: ✭ 123 (+261.76%)
Mutual labels:  android-studio
android-capture
Capture video and screenshots from Android devices and emulators.
Stars: ✭ 32 (-5.88%)
Mutual labels:  screen-capture
SampleProfileUi
Modern Look Profile UI For Android Material Design XML
Stars: ✭ 49 (+44.12%)
Mutual labels:  android-studio
getx-snippets-intelliJ
An extension to accelerate the process of developing applications with flutter, aimed at everyone using the GetX package.
Stars: ✭ 52 (+52.94%)
Mutual labels:  android-studio
Android-SharedPreferences-Helper
This Shared Preferences Helper library (Library size = ~15kb only) Simplifies usage of the default Android SharedPreferences Class. The developer can do in a few lines of code which otherwise would have required several. Simple to understand as compared to the default Shared Preferences class and easy to use. Can be used by simply adding the dep…
Stars: ✭ 15 (-55.88%)
Mutual labels:  android-studio
WiFiPS
WiFi Based Indoor Positioning System, A MVP android Application
Stars: ✭ 105 (+208.82%)
Mutual labels:  android-studio
SideMirror
An Android Studio plugin to mirror your android devices with scrcpy directly from Android Studio.
Stars: ✭ 49 (+44.12%)
Mutual labels:  android-studio
varname-go-die
Android Studio plugin(根据中文在线查找翻译并生成指定格式的变量名称)
Stars: ✭ 45 (+32.35%)
Mutual labels:  android-studio
Android-Clean-Architecture
This is a sample movie list Android application built to demonstrate use of Clean Architecture tools. Dedicated to all Android Developers - (Kotlin, MVVM, Clean Architecture, Rx-Java, Dagger, OkHttp, Unit Testing, SOLID principles, Code Coverage)
Stars: ✭ 268 (+688.24%)
Mutual labels:  android-studio
ScreenEat
screenshot made delicious
Stars: ✭ 54 (+58.82%)
Mutual labels:  screen-capture
BugKotlinDocument
Plugin for IntelliJ IDEA ┗😃┛ Android Studio ┗😃┛ CLion ┗😃┛ AppCode.
Stars: ✭ 29 (-14.71%)
Mutual labels:  android-studio
ValidUtil
No description or website provided.
Stars: ✭ 23 (-32.35%)
Mutual labels:  android-studio
vue-cli-plugin-capacitor
A Vue CLI 3/4 Plugin for Capacitor
Stars: ✭ 136 (+300%)
Mutual labels:  android-studio
meazure
Screen magnification, measurement, capture and color sampling for Windows.
Stars: ✭ 55 (+61.76%)
Mutual labels:  screen-capture

LongScreenshot

This tool makes a number of screenshots, scrolling screen content automatically between each shot

Alt text

Prerequisites

Add this in your root build.gradle file (not your module build.gradle file):

allprojects {
	repositories {
		...
		maven { url "https://jitpack.io" }
	}
}

Dependency

Add this to your module's build.gradle file (make sure the version matches the JitPack badge above):

dependencies {
	...
    implementation 'com.github.peter1492:LongScreenshot:1.0'
}

How to use

Step 1:

Implement Inteface

BigScreenshot.ProcessScreenshot

Step 2:

Create Class object

x will be (Recycleview/ NestedScrollview / Scrollview ..)

y will be (parent ViewGroup Container (LinearLayout/FrameLayout etc..))

BigScreenshot longScreenshot = new BigScreenshot(this, x, y);
longScreenshot.startScreenshot();

Step 3:

Stop Screenshot process

longScreenshot.stopScreenshot();

Step 4:

If all goes fine bitmap will be recieved

@Override 
public void getScreenshot(Bitmap bitmap) {} 
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].