├── .gitignore ├── README.md ├── src ├── main │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ └── layout │ │ │ ├── activity_maintest2.xml │ │ │ └── activity_maintest.xml │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── jinwei │ │ └── screencaputre │ │ ├── activity │ │ └── CapoutActivity.java │ │ ├── TestActivity.java │ │ └── cutout │ │ └── ScreenService.java ├── test │ └── java │ │ └── com │ │ └── jinwei │ │ └── screencaputre │ │ └── ExampleUnitTest.java └── androidTest │ └── java │ └── com │ └── jinwei │ └── screencaputre │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── screencaputre.iml /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # screencaputre 2 | android 5.0 the screencaputre 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | screencaputre 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/test/java/com/jinwei/screencaputre/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jinwei.screencaputre; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine 9 | * (host). 10 | * 11 | * @see Testing documentation 12 | */ 13 | public class ExampleUnitTest { 14 | @Test 15 | public void addition_isCorrect() throws Exception { 16 | assertEquals(4, 2 + 2); 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/res/layout/activity_maintest2.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 |