ScreenshotsNanny


Source link: https://github.com/thyrlian/ScreenshotsNanny

ScreenshotsNanny

Introduction

Until the time of writing, the Android toolchain doesn't have anything to help take screenshots automatically for publishing on Google Play Store.

The other fact is that most of the modern apps consume internet resources, or have UGC (user-generated content). And for the screenshots showing on Google Play, no one would like to see any arbitrary content which may be ugly or even inappropriate.

Be professional! Be beautiful! You can achieve it easily by using ScreenshotsNanny.

Comparison

Below are two different screenshots for the same activity. The left one is using real arbitrary content, while the right one is using prepared mock response.

Setup & Sample code

There are two approaches to utilizing this library.

  • Setup an automated UI test (e.g. Espresso).
  • Create another product flavor in your project to do the screenshot job.

I'll explain the product flavor approach in detail. You can also check out the demo module along with this project.

1 - Add a product flavor (let's name it " screenshots") to your target module's build.gradle:

productFlavors {

  prod {

applicationId "PRODUCT_DEFAULT_APP_ID"
  
}

  screenshots {

applicationId "PACKAGE_NAME.screenshots"
  
}
 
}

2 - Create a blank dummy activity in the screenshots flavor: MODULE/src/screenshots/java/PACKAGE_NAME/ScreenshotsPrimeActivity.java

You can leave the layout as it is (an empty view group), because we don't really need it.

3 - Set the created activity as the launcher activity in that product flavor:

MODULE/src/screenshots/AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
  <application>

<activity android:name="PACKAGE_NAME.ScreenshotsPrimeActivity"

 android:label="@string/title_activity_screenshots_prime">

 <intent-filter>

  <action android:name="android.intent.action.MAIN" />

  <category android:name="android.intent.category.LAUNCHER" />

  <category android:name="android.intent.category.DEFAULT" />

 </intent-filter>

</activity>
  </application> </manifest>

4 - Add the core screenshot code to the new launcher activity ScreenshotsPrimeActivity.java.

There are two major methods: startActivityAndTakeScreenshot & startActivityContainsMapAndTakeScreenshot. Without passing screenshotDelay, the former one uses default value 3 seconds, and the latter one takes screenshot immediately when map view is ready. You could give your own screenshotDelay to both of the methods.

public class ScreenshotsPrimeActivity extends AppCompatActivity {

private MockServerWrapper mServer;

@Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_screenshots_prime);

 // Set up the screenshot fixture

 // Set language (resources configuration) other than the default one if it's necessary

// LanguageSwitcher.change(this, "de");


 // Set up the mock server

mServer = new MockServerWrapper();

// Read mock response(s) from resource directory

String response = ResourceReader.readFromRawResource(ScreenshotsPrimeActivity.this, R.raw.github_user);

ParameterizedCallback changeUrlCallback = new ParameterizedCallback() {

 @Override

 public void execute(String value) {

  // The MockServer runs on arbitrary port each time

  // We have to change production's base URL to the MockServer URL via reflection

  PowerChanger.changeFinalString(GithubService.class, "API_URL", value);

 
}

}
;

// Start mock server with canned response(s), it accepts response(s) as varargs

mServer.start(changeUrlCallback, response);

  
}

@Override
  protected void onResume() {

super.onResume();

 // Start desired activities one by one, and take screenshot accordingly

 startActivityAndTakeScreenshot(MainActivity.class, new Callback() {

 @Override

 public void execute() {

  // Start a normal activity

  startActivity(new Intent(ScreenshotsPrimeActivity.this, MainActivity.class));

 
}

}
);

 startActivityAndTakeScreenshot(SecondActivity.class, new Callback() {

 @Override

 public void execute() {

  // Start an activity by an intent which contains something

  startActivity(SecondActivity.createIntent(ScreenshotsPrimeActivity.this, "London bridge is falling down"));

 
}

}
);

 startActivityAndTakeScreenshot(NetworkActivity.class, new Callback() {

 @Override

 public void execute() {

  // This activity will consume mock response and present it

  startActivity(new Intent(ScreenshotsPrimeActivity.this, NetworkActivity.class));

 
}

}
);

 startActivityAndTakeScreenshot(AccountActivity.class, new Callback() {

 @Override

 public void execute() {

  // Prepare persistent data before starting the activity

  AccountManager.create(getApplicationContext(), "Bruce Lee");

  AccountManager.update(getApplicationContext(), 1048576);

  startActivity(new Intent(ScreenshotsPrimeActivity.this, AccountActivity.class));

 
}

}
);

 startActivityContainsMapAndTakeScreenshot(MapsActivity.class, new Callback() {

 @Override

 public void execute() {

  // Take screenshot for an activity which contains Map, need to pass map view id

  startActivity(new Intent(ScreenshotsPrimeActivity.this, MapsActivity.class));

 
}

}
, R.id.map);

 if (!ActivityCounter.isAnyActivityRunning) {

 Log.i(Constants.LOG_TAG, "? Done.");

 // Stop mock server when all screenshot jobs are done

 mServer.stop();

 finish();

}

  
}
 
}

5 - Select screenshotsDebug as build variant, run it. Then all screenshots will be placed under DEVICE_STORAGE/Screenshots/APP_NAME/. Each screenshot file is named as corresponding activity name (format is PNG).

Screenshots

  • The Android Status Bar won't be captured as part of the screenshot, so you don't have to worry about the messy icons there.
  • Forget about the annoying on-screen keyboard, this library will hide it for you.
  • MapView (no matter if it fulfills the window or not) will also be taken into the screenshot.
  • For any activity consumes network resources, you can replace the content by canned mock responses. (This library is using MockWebServer from Square, Inc.)
  • Some activities may read values from persistent data (e.g. SharedPreferences), you can also prepare the values before activity starts.

(sorry, these demo activities layouts were made with poor design, look ugly)

Logs

Filter: tag = SSN

Import as dependency

Gradle: (available in Bintray's JCenter)

dependencies {

  compile 'com.basgeekball:screenshots-nanny:1.2' 
}

Publish

gradle generateRelease

License

Copyright (c) 2015 Jing Li. See the LICENSE file for license rights and limitations (MIT).

Last but not least

This is made in Berlin with love and passion ?´•?•`?

Resources

Just a cool background view.

It is generally known that load an unoptimized Dex file at runtime in Android (especially in ART mode) would take a long time. When your App is using MultiDex or PluginFramework, You will find that this problem is hard to bear.

TurboDex was born to solve this problem, Like to opens the god mode for AndroidVM, after using TurboDex, no matter how much Dex file your need to load, it will be finished in a very short time.

Legend is a Hook framework for Android Development, it allows you to Hook Java methods without ROOT. Even more exciting is that it supports both Dalvik and Art environment!

Helps setup the tasks needed to generate javadocs for an Android library.

DSL Platform compatible JSON library for Java and Android.

Retrofit ships with support for OkHttp's RequestBody and ResponseBody types but the library is content-format agnostic. This modules contained herein are additional converters for JSON which uses FastJson.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes