实例介绍
Android Studio 3.0 编写的素数查询小程序,适合新手教学,很简易!
【实例截图】
【核心代码】
lll
└── lll
├── app
│ ├── app.iml
│ ├── build
│ │ ├── generated
│ │ │ ├── mockable-android-26.v3.jar
│ │ │ └── source
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ ├── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── release
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── administrator
│ │ │ │ └── lll
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── test
│ │ │ │ │ ├── espresso
│ │ │ │ │ │ ├── idling
│ │ │ │ │ │ │ └── concurrent
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── R.java
│ │ │ │ │ ├── rules
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── runner
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── administrator
│ │ │ │ └── lll
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ ├── debug
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── constraint
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── administrator
│ │ │ │ └── lll
│ │ │ │ └── R.java
│ │ │ └── release
│ │ │ ├── android
│ │ │ │ └── support
│ │ │ │ └── constraint
│ │ │ │ └── R.java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── administrator
│ │ │ └── lll
│ │ │ └── R.java
│ │ ├── intermediates
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── multi-v2
│ │ │ │ │ ├── debug.json
│ │ │ │ │ └── values.json
│ │ │ │ ├── debug
│ │ │ │ │ ├── multi-v2
│ │ │ │ │ │ ├── debug.json
│ │ │ │ │ │ └── values.json
│ │ │ │ │ └── single
│ │ │ │ │ └── debug.json
│ │ │ │ └── release
│ │ │ │ ├── multi-v2
│ │ │ │ │ ├── release.json
│ │ │ │ │ └── values.json
│ │ │ │ └── single
│ │ │ │ └── release.json
│ │ │ ├── build-info
│ │ │ │ └── debug
│ │ │ │ └── build-info.xml
│ │ │ ├── classes
│ │ │ │ ├── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$MyListener.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ └── release
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── constraint
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── administrator
│ │ │ │ └── lll
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── MainActivity$1.class
│ │ │ │ ├── MainActivity$MyListener.class
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ └── R.class
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileReleaseAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── debug-mergeJavaRes
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── feu9N+hcr3dxnxQ2RcBsjUmR7O4=
│ │ │ │ │ └── gDvrEfNNE4fEXGjx2Q_cIdKzvBA=
│ │ │ │ ├── debug-mergeJniLibs
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── feu9N+hcr3dxnxQ2RcBsjUmR7O4=
│ │ │ │ │ └── gDvrEfNNE4fEXGjx2Q_cIdKzvBA=
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ └── values
│ │ │ │ │ │ └── values.xml
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeReleaseShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── packageDebug
│ │ │ │ │ └── debug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── mrrTQqRriez+SFmK2xNfL9fuDL0=
│ │ │ │ ├── packageInstantRunResourcesDebug
│ │ │ │ │ └── debug
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── mrrTQqRriez+SFmK2xNfL9fuDL0=
│ │ │ │ ├── packageRelease
│ │ │ │ │ └── release
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── LqJoEHM+5Ec+pNwyXjeK7UIMCqw=
│ │ │ │ ├── release-mergeJavaRes
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── feu9N+hcr3dxnxQ2RcBsjUmR7O4=
│ │ │ │ │ └── gDvrEfNNE4fEXGjx2Q_cIdKzvBA=
│ │ │ │ └── release-mergeJniLibs
│ │ │ │ ├── merge-state
│ │ │ │ └── zip-cache
│ │ │ │ ├── feu9N+hcr3dxnxQ2RcBsjUmR7O4=
│ │ │ │ └── gDvrEfNNE4fEXGjx2Q_cIdKzvBA=
│ │ │ ├── incremental-classes
│ │ │ │ └── debug
│ │ │ │ └── instant-run-bootstrap.jar
│ │ │ ├── incremental-runtime-classes
│ │ │ │ └── debug
│ │ │ │ └── instant-run.jar
│ │ │ ├── incremental-verifier
│ │ │ │ └── debug
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ └── constraint
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ └── R.class
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── administrator
│ │ │ │ └── lll
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── MainActivity$1.class
│ │ │ │ ├── MainActivity$MyListener.class
│ │ │ │ ├── MainActivity.class
│ │ │ │ ├── my
│ │ │ │ │ └── add.class
│ │ │ │ ├── R$attr.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$mipmap.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$styleable.class
│ │ │ │ ├── R$style.class
│ │ │ │ └── R.class
│ │ │ ├── instant-run-resources
│ │ │ │ ├── output.json
│ │ │ │ └── resources-debug.ir.ap_
│ │ │ ├── instant-run-support
│ │ │ │ └── debug
│ │ │ │ ├── dependencies
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── manifestChecker
│ │ │ │ │ ├── manifest.crc
│ │ │ │ │ └── manifest.xml
│ │ │ │ ├── package_dependencies
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_0
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_1
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_2
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_3
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_4
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_5
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_6
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_7
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_8
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── package_slice_9
│ │ │ │ │ └── dex-renamer-state.txt
│ │ │ │ ├── slice_0
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_1
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_2
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_3
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_4
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_5
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_6
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_7
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── slice_8
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ └── slice_9
│ │ │ │ └── AndroidManifest.xml
│ │ │ ├── javaPrecompile
│ │ │ │ ├── debug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ └── release
│ │ │ │ └── annotationProcessors.json
│ │ │ ├── manifest
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── output.json
│ │ │ ├── manifests
│ │ │ │ ├── density
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── output.json
│ │ │ │ │ └── release
│ │ │ │ │ └── output.json
│ │ │ │ ├── full
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ │ └── output.json
│ │ │ │ │ └── release
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ └── instant-run
│ │ │ │ ├── debug
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ └── release
│ │ │ │ └── output.json
│ │ │ ├── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debugAndroidTest.ap_
│ │ │ │ ├── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debug.ap_
│ │ │ │ ├── merged
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── values_values.arsc.flat
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── drawable_ic_launcher_background.xml.flat
│ │ │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat
│ │ │ │ │ │ ├── layout_activity_main.xml.flat
│ │ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat
│ │ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat
│ │ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat
│ │ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ │ └── values_values.arsc.flat
│ │ │ │ │ └── release
│ │ │ │ │ ├── drawable_ic_launcher_background.xml.flat
│ │ │ │ │ ├── drawable-v24_ic_launcher_foreground.xml.flat
│ │ │ │ │ ├── layout_activity_main.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher_round.xml.flat
│ │ │ │ │ ├── mipmap-anydpi-v26_ic_launcher.xml.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-hdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-mdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher.png.flat
│ │ │ │ │ ├── mipmap-xxxhdpi_ic_launcher_round.png.flat
│ │ │ │ │ └── values_values.arsc.flat
│ │ │ │ ├── release
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-release.ap_
│ │ │ │ └── symbol-table-with-package
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── package-aware-r.txt
│ │ │ │ ├── debug
│ │ │ │ │ └── package-aware-r.txt
│ │ │ │ └── release
│ │ │ │ └── package-aware-r.txt
│ │ │ ├── split-apk
│ │ │ │ └── debug
│ │ │ │ ├── dep
│ │ │ │ │ └── dependencies.apk
│ │ │ │ └── slices
│ │ │ │ ├── slice_0.apk
│ │ │ │ ├── slice_1.apk
│ │ │ │ ├── slice_2.apk
│ │ │ │ ├── slice_3.apk
│ │ │ │ ├── slice_4.apk
│ │ │ │ ├── slice_5.apk
│ │ │ │ ├── slice_6.apk
│ │ │ │ ├── slice_7.apk
│ │ │ │ ├── slice_8.apk
│ │ │ │ └── slice_9.apk
│ │ │ ├── splits-support
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── split-list.gson
│ │ │ │ ├── debug
│ │ │ │ │ └── split-list.gson
│ │ │ │ └── release
│ │ │ │ └── split-list.gson
│ │ │ ├── symbols
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── R.txt
│ │ │ │ ├── debug
│ │ │ │ │ └── R.txt
│ │ │ │ └── release
│ │ │ │ └── R.txt
│ │ │ └── transforms
│ │ │ ├── dex
│ │ │ │ └── release
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── dexBuilder
│ │ │ │ └── debug
│ │ │ │ ├── 32.jar
│ │ │ │ ├── 33.jar
│ │ │ │ ├── 54
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ │ ├── R$id.dex
│ │ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ ├── BuildConfig.dex
│ │ │ │ │ ├── MainActivity$1.dex
│ │ │ │ │ ├── MainActivity$MyListener.dex
│ │ │ │ │ ├── MainActivity.dex
│ │ │ │ │ ├── R$attr.dex
│ │ │ │ │ ├── R$color.dex
│ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ ├── R$id.dex
│ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ ├── R$mipmap.dex
│ │ │ │ │ ├── R$string.dex
│ │ │ │ │ ├── R$styleable.dex
│ │ │ │ │ ├── R$style.dex
│ │ │ │ │ └── R.dex
│ │ │ │ └── __content__.json
│ │ │ ├── dexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 37
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── externalLibsDexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── extractJars
│ │ │ │ └── debug
│ │ │ │ └── __content__.json
│ │ │ ├── instantRun
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$MyListener.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── my
│ │ │ │ │ │ └── add.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ └── __content__.json
│ │ │ ├── instantRunDependenciesApk
│ │ │ │ └── debug
│ │ │ │ └── __content__.json
│ │ │ ├── instantRunSlicer
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ ├── buildId.txt
│ │ │ │ │ └── com
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── tools
│ │ │ │ │ │ └── ir
│ │ │ │ │ │ └── dummy
│ │ │ │ │ │ └── slice_0.class
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ ├── MainActivity$1.class
│ │ │ │ │ ├── MainActivity$MyListener.class
│ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$color.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$mipmap.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ ├── R$style.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── 1
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_1.class
│ │ │ │ ├── 2
│ │ │ │ │ ├── buildId.txt
│ │ │ │ │ └── com
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── tools
│ │ │ │ │ │ └── ir
│ │ │ │ │ │ └── dummy
│ │ │ │ │ │ └── slice_2.class
│ │ │ │ │ └── example
│ │ │ │ │ └── administrator
│ │ │ │ │ └── lll
│ │ │ │ │ └── my
│ │ │ │ │ └── add.class
│ │ │ │ ├── 3
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_3.class
│ │ │ │ ├── 4
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_4.class
│ │ │ │ ├── 5
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_5.class
│ │ │ │ ├── 6
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_6.class
│ │ │ │ ├── 7
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_7.class
│ │ │ │ ├── 8
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_8.class
│ │ │ │ ├── 9
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ └── constraint
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ ├── buildId.txt
│ │ │ │ │ └── com
│ │ │ │ │ └── android
│ │ │ │ │ └── tools
│ │ │ │ │ └── ir
│ │ │ │ │ └── dummy
│ │ │ │ │ └── slice_9.class
│ │ │ │ └── __content__.json
│ │ │ ├── instantRunSlicesApk
│ │ │ │ └── debug
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJavaRes
│ │ │ │ ├── debug
│ │ │ │ │ ├── 0.jar
│ │ │ │ │ └── __content__.json
│ │ │ │ └── release
│ │ │ │ ├── 0.jar
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJniLibs
│ │ │ │ ├── debug
│ │ │ │ │ └── __content__.json
│ │ │ │ └── release
│ │ │ │ └── __content__.json
│ │ │ └── preDex
│ │ │ └── release
│ │ │ ├── 0.jar
│ │ │ ├── 1.jar
│ │ │ ├── 2.jar
│ │ │ └── __content__.json
│ │ ├── outputs
│ │ │ ├── apk
│ │ │ │ └── debug
│ │ │ │ ├── app-debug.apk
│ │ │ │ └── output.json
│ │ │ └── logs
│ │ │ ├── manifest-merger-debug-report.txt
│ │ │ └── manifest-merger-release-report.txt
│ │ └── reports
│ │ ├── lint-results-release-fatal.html
│ │ └── lint-results-release-fatal.xml
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ ├── androidTest
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── administrator
│ │ └── lll
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── administrator
│ │ │ └── lll
│ │ │ └── MainActivity.java
│ │ └── res
│ │ ├── drawable
│ │ │ └── ic_launcher_background.xml
│ │ ├── drawable-v24
│ │ │ └── ic_launcher_foreground.xml
│ │ ├── layout
│ │ │ └── activity_main.xml
│ │ ├── mipmap-anydpi-v26
│ │ │ ├── ic_launcher_round.xml
│ │ │ └── ic_launcher.xml
│ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── com
│ └── example
│ └── administrator
│ └── lll
│ └── ExampleUnitTest.java
├── build
│ ├── android-profile
│ │ ├── profile-2018-01-23-17-08-14-814.json
│ │ ├── profile-2018-01-23-17-08-14-814.rawproto
│ │ ├── profile-2018-01-23-17-08-33-851.json
│ │ ├── profile-2018-01-23-17-08-33-851.rawproto
│ │ ├── profile-2018-01-23-17-16-01-306.json
│ │ ├── profile-2018-01-23-17-16-01-306.rawproto
│ │ ├── profile-2018-01-23-17-17-51-539.json
│ │ ├── profile-2018-01-23-17-17-51-539.rawproto
│ │ ├── profile-2018-01-23-17-18-36-240.json
│ │ ├── profile-2018-01-23-17-18-36-240.rawproto
│ │ ├── profile-2018-01-23-17-34-41-287.json
│ │ ├── profile-2018-01-23-17-34-41-287.rawproto
│ │ ├── profile-2018-01-23-17-36-32-966.json
│ │ ├── profile-2018-01-23-17-36-32-966.rawproto
│ │ ├── profile-2018-01-24-08-47-47-936.json
│ │ ├── profile-2018-01-24-08-47-47-936.rawproto
│ │ ├── profile-2018-01-24-08-48-06-968.json
│ │ ├── profile-2018-01-24-08-48-06-968.rawproto
│ │ ├── profile-2018-01-24-08-51-25-348.json
│ │ ├── profile-2018-01-24-08-51-25-348.rawproto
│ │ ├── profile-2018-01-24-08-51-34-240.json
│ │ ├── profile-2018-01-24-08-51-34-240.rawproto
│ │ ├── profile-2018-01-24-09-06-23-993.json
│ │ ├── profile-2018-01-24-09-06-23-993.rawproto
│ │ ├── profile-2018-01-24-09-06-45-929.json
│ │ ├── profile-2018-01-24-09-06-45-929.rawproto
│ │ ├── profile-2018-01-24-09-07-00-606.json
│ │ ├── profile-2018-01-24-09-07-00-606.rawproto
│ │ ├── profile-2018-01-24-09-07-11-180.json
│ │ ├── profile-2018-01-24-09-07-11-180.rawproto
│ │ ├── profile-2018-01-24-09-07-47-341.json
│ │ ├── profile-2018-01-24-09-07-47-341.rawproto
│ │ ├── profile-2018-01-24-09-08-45-905.json
│ │ ├── profile-2018-01-24-09-08-45-905.rawproto
│ │ ├── profile-2018-01-24-09-09-36-796.json
│ │ ├── profile-2018-01-24-09-09-36-796.rawproto
│ │ ├── profile-2018-01-24-09-12-46-624.json
│ │ ├── profile-2018-01-24-09-12-46-624.rawproto
│ │ ├── profile-2018-01-24-09-18-02-654.json
│ │ ├── profile-2018-01-24-09-18-02-654.rawproto
│ │ ├── profile-2018-01-24-10-14-50-520.json
│ │ ├── profile-2018-01-24-10-14-50-520.rawproto
│ │ ├── profile-2018-01-24-10-15-05-008.json
│ │ ├── profile-2018-01-24-10-15-05-008.rawproto
│ │ ├── profile-2018-01-24-10-17-08-714.json
│ │ ├── profile-2018-01-24-10-17-08-714.rawproto
│ │ ├── profile-2018-01-24-10-17-28-345.json
│ │ ├── profile-2018-01-24-10-17-28-345.rawproto
│ │ ├── profile-2018-01-24-10-17-55-680.json
│ │ ├── profile-2018-01-24-10-17-55-680.rawproto
│ │ ├── profile-2018-01-24-10-46-03-582.json
│ │ ├── profile-2018-01-24-10-46-03-582.rawproto
│ │ ├── profile-2018-01-24-10-49-47-148.json
│ │ ├── profile-2018-01-24-10-49-47-148.rawproto
│ │ ├── profile-2018-01-24-10-50-54-606.json
│ │ ├── profile-2018-01-24-10-50-54-606.rawproto
│ │ ├── profile-2018-01-24-11-39-16-323.json
│ │ ├── profile-2018-01-24-11-39-16-323.rawproto
│ │ ├── profile-2018-01-24-11-48-19-297.json
│ │ ├── profile-2018-01-24-11-48-19-297.rawproto
│ │ ├── profile-2018-01-24-11-51-49-627.json
│ │ ├── profile-2018-01-24-11-51-49-627.rawproto
│ │ ├── profile-2018-01-24-11-54-33-126.json
│ │ ├── profile-2018-01-24-11-54-33-126.rawproto
│ │ ├── profile-2018-01-24-11-54-40-615.json
│ │ ├── profile-2018-01-24-11-54-40-615.rawproto
│ │ ├── profile-2018-01-24-11-56-05-063.json
│ │ ├── profile-2018-01-24-11-56-05-063.rawproto
│ │ ├── profile-2018-01-24-11-56-53-706.json
│ │ ├── profile-2018-01-24-11-56-53-706.rawproto
│ │ ├── profile-2018-01-24-11-57-15-272.json
│ │ ├── profile-2018-01-24-11-57-15-272.rawproto
│ │ ├── profile-2018-01-24-11-58-03-091.json
│ │ ├── profile-2018-01-24-11-58-03-091.rawproto
│ │ ├── profile-2018-01-24-11-59-57-753.json
│ │ ├── profile-2018-01-24-11-59-57-753.rawproto
│ │ ├── profile-2018-01-24-12-06-22-420.json
│ │ ├── profile-2018-01-24-12-06-22-420.rawproto
│ │ ├── profile-2018-01-24-12-15-32-625.json
│ │ ├── profile-2018-01-24-12-15-32-625.rawproto
│ │ ├── profile-2018-01-24-12-19-00-775.json
│ │ ├── profile-2018-01-24-12-19-00-775.rawproto
│ │ ├── profile-2018-01-24-12-20-17-987.json
│ │ ├── profile-2018-01-24-12-20-17-987.rawproto
│ │ ├── profile-2018-01-24-12-25-06-728.json
│ │ ├── profile-2018-01-24-12-25-06-728.rawproto
│ │ ├── profile-2018-01-24-12-26-12-981.json
│ │ ├── profile-2018-01-24-12-26-12-981.rawproto
│ │ ├── profile-2018-01-24-12-30-01-606.json
│ │ ├── profile-2018-01-24-12-30-01-606.rawproto
│ │ ├── profile-2018-01-24-12-30-34-794.json
│ │ ├── profile-2018-01-24-12-30-34-794.rawproto
│ │ ├── profile-2018-01-24-12-39-45-887.json
│ │ ├── profile-2018-01-24-12-39-45-887.rawproto
│ │ ├── profile-2018-01-24-12-41-41-436.json
│ │ ├── profile-2018-01-24-12-41-41-436.rawproto
│ │ ├── profile-2018-01-24-12-43-05-611.json
│ │ ├── profile-2018-01-24-12-43-05-611.rawproto
│ │ ├── profile-2018-01-24-12-49-39-778.json
│ │ ├── profile-2018-01-24-12-49-39-778.rawproto
│ │ ├── profile-2018-01-24-12-50-20-760.json
│ │ ├── profile-2018-01-24-12-50-20-760.rawproto
│ │ ├── profile-2018-01-24-12-55-30-296.json
│ │ ├── profile-2018-01-24-12-55-30-296.rawproto
│ │ ├── profile-2018-01-24-12-56-05-497.json
│ │ ├── profile-2018-01-24-12-56-05-497.rawproto
│ │ ├── profile-2018-01-24-12-57-00-988.json
│ │ ├── profile-2018-01-24-12-57-00-988.rawproto
│ │ ├── profile-2018-01-24-12-58-01-382.json
│ │ ├── profile-2018-01-24-12-58-01-382.rawproto
│ │ ├── profile-2018-01-24-12-58-15-119.json
│ │ ├── profile-2018-01-24-12-58-15-119.rawproto
│ │ ├── profile-2018-01-24-13-04-40-217.json
│ │ ├── profile-2018-01-24-13-04-40-217.rawproto
│ │ ├── profile-2018-01-24-13-17-58-183.json
│ │ ├── profile-2018-01-24-13-17-58-183.rawproto
│ │ ├── profile-2018-01-24-13-19-41-507.json
│ │ ├── profile-2018-01-24-13-19-41-507.rawproto
│ │ ├── profile-2018-01-24-13-21-09-830.json
│ │ ├── profile-2018-01-24-13-21-09-830.rawproto
│ │ ├── profile-2018-01-24-13-22-21-287.json
│ │ ├── profile-2018-01-24-13-22-21-287.rawproto
│ │ ├── profile-2018-01-24-13-24-04-745.json
│ │ ├── profile-2018-01-24-13-24-04-745.rawproto
│ │ ├── profile-2018-01-24-13-25-39-695.json
│ │ ├── profile-2018-01-24-13-25-39-695.rawproto
│ │ ├── profile-2018-01-24-13-27-14-400.json
│ │ ├── profile-2018-01-24-13-27-14-400.rawproto
│ │ ├── profile-2018-01-24-13-29-37-294.json
│ │ ├── profile-2018-01-24-13-29-37-294.rawproto
│ │ ├── profile-2018-01-24-13-30-50-244.json
│ │ ├── profile-2018-01-24-13-30-50-244.rawproto
│ │ ├── profile-2018-01-24-13-32-14-929.json
│ │ ├── profile-2018-01-24-13-32-14-929.rawproto
│ │ ├── profile-2018-01-24-13-32-48-229.json
│ │ ├── profile-2018-01-24-13-32-48-229.rawproto
│ │ ├── profile-2018-01-24-13-33-31-283.json
│ │ ├── profile-2018-01-24-13-33-31-283.rawproto
│ │ ├── profile-2018-01-24-13-34-01-869.json
│ │ ├── profile-2018-01-24-13-34-01-869.rawproto
│ │ ├── profile-2018-01-24-13-35-00-481.json
│ │ ├── profile-2018-01-24-13-35-00-481.rawproto
│ │ ├── profile-2018-01-24-13-36-41-286.json
│ │ ├── profile-2018-01-24-13-36-41-286.rawproto
│ │ ├── profile-2018-01-24-13-40-43-022.json
│ │ ├── profile-2018-01-24-13-40-43-022.rawproto
│ │ ├── profile-2018-01-24-13-41-36-205.json
│ │ ├── profile-2018-01-24-13-41-36-205.rawproto
│ │ ├── profile-2018-01-24-13-41-44-123.json
│ │ ├── profile-2018-01-24-13-41-44-123.rawproto
│ │ ├── profile-2018-01-24-13-44-52-214.json
│ │ ├── profile-2018-01-24-13-44-52-214.rawproto
│ │ ├── profile-2018-01-24-13-53-44-873.json
│ │ ├── profile-2018-01-24-13-53-44-873.rawproto
│ │ ├── profile-2018-01-24-13-54-38-905.json
│ │ ├── profile-2018-01-24-13-54-38-905.rawproto
│ │ ├── profile-2018-01-24-13-57-46-811.json
│ │ ├── profile-2018-01-24-13-57-46-811.rawproto
│ │ ├── profile-2018-01-24-13-58-05-554.json
│ │ ├── profile-2018-01-24-13-58-05-554.rawproto
│ │ ├── profile-2018-01-24-14-04-33-183.json
│ │ └── profile-2018-01-24-14-04-33-183.rawproto
│ └── intermediates
│ ├── dex-cache
│ │ └── cache.xml
│ └── lint-cache
│ └── maven.google
│ ├── com
│ │ └── android
│ │ └── support
│ │ ├── constraint
│ │ │ └── group-index.xml
│ │ └── test
│ │ ├── espresso
│ │ │ └── group-index.xml
│ │ └── group-index.xml
│ └── master-index.xml
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── lll.iml
├── local.properties
└── settings.gradle
371 directories, 514 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论