实例介绍
androidVuforia原生识别后立即播放视频,从网络下载xml,加载播放网络视频
【实例截图】
【核心代码】
test1
└── test1
├── app
│ ├── app.iml
│ ├── build
│ │ ├── generated
│ │ │ ├── mockable-android-27.v3.jar
│ │ │ └── source
│ │ │ ├── buildConfig
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── vuforia
│ │ │ │ │ └── VideoPlayback
│ │ │ │ │ └── test
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── vuforia
│ │ │ │ └── VideoPlayback
│ │ │ │ └── BuildConfig.java
│ │ │ └── r
│ │ │ ├── androidTest
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ └── vuforia
│ │ │ │ └── VideoPlayback
│ │ │ │ └── test
│ │ │ │ └── R.java
│ │ │ └── debug
│ │ │ └── com
│ │ │ ├── liulishuo
│ │ │ │ └── filedownloader
│ │ │ │ └── R.java
│ │ │ └── vuforia
│ │ │ └── VideoPlayback
│ │ │ └── R.java
│ │ ├── intermediates
│ │ │ ├── assets
│ │ │ │ └── debug
│ │ │ │ ├── StonesAndChips.dat
│ │ │ │ ├── StonesAndChips.xml
│ │ │ │ └── VideoPlayback
│ │ │ │ ├── busy.png
│ │ │ │ ├── error.png
│ │ │ │ ├── play.png
│ │ │ │ ├── VP_about.html
│ │ │ │ ├── VuforiaSizzleReel_1.mp4
│ │ │ │ ├── VuforiaSizzleReel_1.png
│ │ │ │ ├── VuforiaSizzleReel_2.mp4
│ │ │ │ └── VuforiaSizzleReel_2.png
│ │ │ ├── blame
│ │ │ │ └── res
│ │ │ │ └── debug
│ │ │ │ ├── multi-v2
│ │ │ │ │ ├── debug.json
│ │ │ │ │ ├── values-hdpi-v4.json
│ │ │ │ │ ├── values.json
│ │ │ │ │ ├── values-ldpi-v4.json
│ │ │ │ │ ├── values-mdpi-v4.json
│ │ │ │ │ ├── values-v13.json
│ │ │ │ │ ├── values-xhdpi-v4.json
│ │ │ │ │ └── values-xxhdpi-v4.json
│ │ │ │ └── single
│ │ │ │ └── debug.json
│ │ │ ├── classes
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── com
│ │ │ │ │ └── vuforia
│ │ │ │ │ └── VideoPlayback
│ │ │ │ │ └── test
│ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ └── R.class
│ │ │ │ └── debug
│ │ │ │ └── com
│ │ │ │ ├── liulishuo
│ │ │ │ │ └── filedownloader
│ │ │ │ │ └── R.class
│ │ │ │ └── vuforia
│ │ │ │ ├── SampleApplication
│ │ │ │ │ ├── SampleApplicationControl.class
│ │ │ │ │ ├── SampleApplicationException.class
│ │ │ │ │ ├── SampleApplicationSession$1.class
│ │ │ │ │ ├── SampleApplicationSession$InitTrackerTask.class
│ │ │ │ │ ├── SampleApplicationSession$InitVuforiaTask.class
│ │ │ │ │ ├── SampleApplicationSession$LoadTrackerTask.class
│ │ │ │ │ ├── SampleApplicationSession$ResumeVuforiaTask.class
│ │ │ │ │ ├── SampleApplicationSession$StartVuforiaTask.class
│ │ │ │ │ ├── SampleApplicationSession.class
│ │ │ │ │ ├── SampleAppRenderer.class
│ │ │ │ │ ├── SampleAppRendererControl.class
│ │ │ │ │ └── utils
│ │ │ │ │ ├── CubeObject$1.class
│ │ │ │ │ ├── CubeObject.class
│ │ │ │ │ ├── CubeShaders.class
│ │ │ │ │ ├── LineShaders.class
│ │ │ │ │ ├── LoadingDialogHandler.class
│ │ │ │ │ ├── MeshObject$BUFFER_TYPE.class
│ │ │ │ │ ├── MeshObject.class
│ │ │ │ │ ├── SampleApplication3DModel$1.class
│ │ │ │ │ ├── SampleApplication3DModel.class
│ │ │ │ │ ├── SampleApplicationGLView$1.class
│ │ │ │ │ ├── SampleApplicationGLView$ConfigChooser.class
│ │ │ │ │ ├── SampleApplicationGLView$ContextFactory.class
│ │ │ │ │ ├── SampleApplicationGLView.class
│ │ │ │ │ ├── SampleMath.class
│ │ │ │ │ ├── SampleUtils.class
│ │ │ │ │ ├── Teapot$1.class
│ │ │ │ │ ├── Teapot.class
│ │ │ │ │ ├── Texture.class
│ │ │ │ │ └── VideoBackgroundShader.class
│ │ │ │ └── VideoPlayback
│ │ │ │ ├── app
│ │ │ │ │ └── VideoPlayback
│ │ │ │ │ ├── FullscreenPlayback$1.class
│ │ │ │ │ ├── FullscreenPlayback$2.class
│ │ │ │ │ ├── FullscreenPlayback.class
│ │ │ │ │ ├── KeyFrameShaders.class
│ │ │ │ │ ├── VideoPlayback$1$1.class
│ │ │ │ │ ├── VideoPlayback$1.class
│ │ │ │ │ ├── VideoPlayback$2$1.class
│ │ │ │ │ ├── VideoPlayback$2.class
│ │ │ │ │ ├── VideoPlayback.class
│ │ │ │ │ ├── VideoPlaybackRenderer$1.class
│ │ │ │ │ ├── VideoPlaybackRenderer.class
│ │ │ │ │ ├── VideoPlaybackShaders.class
│ │ │ │ │ ├── VideoPlayerHelper$MEDIA_STATE.class
│ │ │ │ │ ├── VideoPlayerHelper$MEDIA_TYPE.class
│ │ │ │ │ └── VideoPlayerHelper.class
│ │ │ │ ├── BuildConfig.class
│ │ │ │ ├── R$color.class
│ │ │ │ ├── R$dimen.class
│ │ │ │ ├── R$drawable.class
│ │ │ │ ├── R$id.class
│ │ │ │ ├── R$layout.class
│ │ │ │ ├── R$string.class
│ │ │ │ ├── R$style.class
│ │ │ │ ├── R.class
│ │ │ │ └── ui
│ │ │ │ ├── ActivityList
│ │ │ │ │ ├── AboutScreen$1.class
│ │ │ │ │ ├── AboutScreen$2.class
│ │ │ │ │ ├── AboutScreen$3.class
│ │ │ │ │ ├── AboutScreen$4.class
│ │ │ │ │ ├── AboutScreen$5.class
│ │ │ │ │ ├── AboutScreen$6.class
│ │ │ │ │ ├── AboutScreen$7.class
│ │ │ │ │ ├── AboutScreen$AboutWebViewClient.class
│ │ │ │ │ ├── AboutScreen.class
│ │ │ │ │ ├── ActivitySplashScreen$1.class
│ │ │ │ │ └── ActivitySplashScreen.class
│ │ │ │ ├── DownLoaderTask$1.class
│ │ │ │ ├── DownLoaderTask$ProgressReportingOutputStream.class
│ │ │ │ ├── DownLoaderTask.class
│ │ │ │ ├── SampleAppMenu
│ │ │ │ │ ├── SampleAppMenu$1.class
│ │ │ │ │ ├── SampleAppMenu$GestureListener$1.class
│ │ │ │ │ ├── SampleAppMenu$GestureListener.class
│ │ │ │ │ ├── SampleAppMenuAnimator.class
│ │ │ │ │ ├── SampleAppMenu.class
│ │ │ │ │ ├── SampleAppMenuGroup$1.class
│ │ │ │ │ ├── SampleAppMenuGroup$2.class
│ │ │ │ │ ├── SampleAppMenuGroup$3.class
│ │ │ │ │ ├── SampleAppMenuGroup.class
│ │ │ │ │ ├── SampleAppMenuInterface.class
│ │ │ │ │ └── SampleAppMenuView.class
│ │ │ │ ├── ZipExtractorTask$1.class
│ │ │ │ ├── ZipExtractorTask$ProgressReportingOutputStream.class
│ │ │ │ └── ZipExtractorTask.class
│ │ │ ├── classes-jar
│ │ │ │ └── debug
│ │ │ │ └── classes.jar
│ │ │ ├── incremental
│ │ │ │ ├── compileDebugAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ └── dependency.store
│ │ │ │ ├── debug-mergeJavaRes
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── 14PTFkWcx89IZHjSa2hbahmTpUg=
│ │ │ │ │ └── FRuf2rqojD_6OEhpzYWcH_EABIs=
│ │ │ │ ├── debug-mergeJniLibs
│ │ │ │ │ ├── merge-state
│ │ │ │ │ └── zip-cache
│ │ │ │ │ ├── 14PTFkWcx89IZHjSa2hbahmTpUg=
│ │ │ │ │ └── FRuf2rqojD_6OEhpzYWcH_EABIs=
│ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugAssets
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugJniLibFolders
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugResources
│ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ └── merger.xml
│ │ │ │ ├── mergeDebugShaders
│ │ │ │ │ └── merger.xml
│ │ │ │ └── packageDebug
│ │ │ │ └── debug
│ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ ├── file-input-save-data.txt
│ │ │ │ └── zip-cache
│ │ │ │ └── FHdSkTwFEgKshhi2pDoxbkTpKOU=
│ │ │ ├── javaPrecompile
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ ├── debug
│ │ │ │ │ └── annotationProcessors.json
│ │ │ │ └── test
│ │ │ │ └── debug
│ │ │ │ └── annotationProcessors.json
│ │ │ ├── jniLibs
│ │ │ │ └── debug
│ │ │ │ ├── arm64-v8a
│ │ │ │ │ └── libVuforia.so
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── libVuforia.so
│ │ │ │ └── x86
│ │ │ │ └── libVuforia.so
│ │ │ ├── manifest
│ │ │ │ └── androidTest
│ │ │ │ └── debug
│ │ │ │ ├── AndroidManifest.xml
│ │ │ │ └── output.json
│ │ │ ├── manifests
│ │ │ │ ├── density
│ │ │ │ │ └── debug
│ │ │ │ │ └── output.json
│ │ │ │ ├── full
│ │ │ │ │ └── debug
│ │ │ │ │ ├── AndroidManifest.xml
│ │ │ │ │ └── output.json
│ │ │ │ └── instant-run
│ │ │ │ └── debug
│ │ │ │ └── output.json
│ │ │ ├── res
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debugAndroidTest.ap_
│ │ │ │ ├── debug
│ │ │ │ │ ├── output.json
│ │ │ │ │ └── resources-debug.ap_
│ │ │ │ ├── merged
│ │ │ │ │ └── debug
│ │ │ │ │ ├── drawable-hdpi_icon.png.flat
│ │ │ │ │ ├── drawable-hdpi_logo.png.flat
│ │ │ │ │ ├── drawable_icon.png.flat
│ │ │ │ │ ├── drawable-ldpi_icon.png.flat
│ │ │ │ │ ├── drawable-ldpi_logo.png.flat
│ │ │ │ │ ├── drawable_logo.png.flat
│ │ │ │ │ ├── drawable-mdpi_icon.png.flat
│ │ │ │ │ ├── drawable-mdpi_logo.png.flat
│ │ │ │ │ ├── drawable_vuforia_splash.png.flat
│ │ │ │ │ ├── drawable-xhdpi_icon.png.flat
│ │ │ │ │ ├── drawable-xhdpi_logo.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_icon.png.flat
│ │ │ │ │ ├── drawable-xxhdpi_logo.png.flat
│ │ │ │ │ ├── layout_about_screen.xml.flat
│ │ │ │ │ ├── layout_camera_overlay.xml.flat
│ │ │ │ │ ├── layout_fullscreen_layout.xml.flat
│ │ │ │ │ ├── layout_sample_app_menu_group_divider.xml.flat
│ │ │ │ │ ├── layout_sample_app_menu_group_radio_button.xml.flat
│ │ │ │ │ ├── layout_sample_app_menu_group.xml.flat
│ │ │ │ │ ├── layout_sample_app_menu_layer.xml.flat
│ │ │ │ │ ├── layout_splash_screen.xml.flat
│ │ │ │ │ ├── values-hdpi-v4_values-hdpi-v4.arsc.flat
│ │ │ │ │ ├── values-ldpi-v4_values-ldpi-v4.arsc.flat
│ │ │ │ │ ├── values-mdpi-v4_values-mdpi-v4.arsc.flat
│ │ │ │ │ ├── values-v13_values-v13.arsc.flat
│ │ │ │ │ ├── values_values.arsc.flat
│ │ │ │ │ ├── values-xhdpi-v4_values-xhdpi-v4.arsc.flat
│ │ │ │ │ └── values-xxhdpi-v4_values-xxhdpi-v4.arsc.flat
│ │ │ │ └── symbol-table-with-package
│ │ │ │ └── debug
│ │ │ │ └── package-aware-r.txt
│ │ │ ├── splits-support
│ │ │ │ ├── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── split-list.gson
│ │ │ │ └── debug
│ │ │ │ └── split-list.gson
│ │ │ ├── symbols
│ │ │ │ └── debug
│ │ │ │ └── R.txt
│ │ │ └── transforms
│ │ │ ├── dexBuilder
│ │ │ │ └── debug
│ │ │ │ ├── 0.jar
│ │ │ │ ├── 10.jar
│ │ │ │ ├── 1.jar
│ │ │ │ ├── 2.jar
│ │ │ │ ├── 3.jar
│ │ │ │ ├── 4.jar
│ │ │ │ ├── 5
│ │ │ │ │ └── com
│ │ │ │ │ ├── liulishuo
│ │ │ │ │ │ └── filedownloader
│ │ │ │ │ │ └── R.dex
│ │ │ │ │ └── vuforia
│ │ │ │ │ ├── SampleApplication
│ │ │ │ │ │ ├── SampleApplicationControl.dex
│ │ │ │ │ │ ├── SampleApplicationException.dex
│ │ │ │ │ │ ├── SampleApplicationSession$1.dex
│ │ │ │ │ │ ├── SampleApplicationSession$InitTrackerTask.dex
│ │ │ │ │ │ ├── SampleApplicationSession$InitVuforiaTask.dex
│ │ │ │ │ │ ├── SampleApplicationSession$LoadTrackerTask.dex
│ │ │ │ │ │ ├── SampleApplicationSession$ResumeVuforiaTask.dex
│ │ │ │ │ │ ├── SampleApplicationSession$StartVuforiaTask.dex
│ │ │ │ │ │ ├── SampleApplicationSession.dex
│ │ │ │ │ │ ├── SampleAppRendererControl.dex
│ │ │ │ │ │ ├── SampleAppRenderer.dex
│ │ │ │ │ │ └── utils
│ │ │ │ │ │ ├── CubeObject$1.dex
│ │ │ │ │ │ ├── CubeObject.dex
│ │ │ │ │ │ ├── CubeShaders.dex
│ │ │ │ │ │ ├── LineShaders.dex
│ │ │ │ │ │ ├── LoadingDialogHandler.dex
│ │ │ │ │ │ ├── MeshObject$BUFFER_TYPE.dex
│ │ │ │ │ │ ├── MeshObject.dex
│ │ │ │ │ │ ├── SampleApplication3DModel$1.dex
│ │ │ │ │ │ ├── SampleApplication3DModel.dex
│ │ │ │ │ │ ├── SampleApplicationGLView$1.dex
│ │ │ │ │ │ ├── SampleApplicationGLView$ConfigChooser.dex
│ │ │ │ │ │ ├── SampleApplicationGLView$ContextFactory.dex
│ │ │ │ │ │ ├── SampleApplicationGLView.dex
│ │ │ │ │ │ ├── SampleMath.dex
│ │ │ │ │ │ ├── SampleUtils.dex
│ │ │ │ │ │ ├── Teapot$1.dex
│ │ │ │ │ │ ├── Teapot.dex
│ │ │ │ │ │ ├── Texture.dex
│ │ │ │ │ │ └── VideoBackgroundShader.dex
│ │ │ │ │ └── VideoPlayback
│ │ │ │ │ ├── app
│ │ │ │ │ │ └── VideoPlayback
│ │ │ │ │ │ ├── FullscreenPlayback$1.dex
│ │ │ │ │ │ ├── FullscreenPlayback$2.dex
│ │ │ │ │ │ ├── FullscreenPlayback.dex
│ │ │ │ │ │ ├── KeyFrameShaders.dex
│ │ │ │ │ │ ├── VideoPlayback$1$1.dex
│ │ │ │ │ │ ├── VideoPlayback$1.dex
│ │ │ │ │ │ ├── VideoPlayback$2$1.dex
│ │ │ │ │ │ ├── VideoPlayback$2.dex
│ │ │ │ │ │ ├── VideoPlayback.dex
│ │ │ │ │ │ ├── VideoPlaybackRenderer$1.dex
│ │ │ │ │ │ ├── VideoPlaybackRenderer.dex
│ │ │ │ │ │ ├── VideoPlaybackShaders.dex
│ │ │ │ │ │ ├── VideoPlayerHelper$MEDIA_STATE.dex
│ │ │ │ │ │ ├── VideoPlayerHelper$MEDIA_TYPE.dex
│ │ │ │ │ │ └── VideoPlayerHelper.dex
│ │ │ │ │ ├── BuildConfig.dex
│ │ │ │ │ ├── R$color.dex
│ │ │ │ │ ├── R$dimen.dex
│ │ │ │ │ ├── R$drawable.dex
│ │ │ │ │ ├── R$id.dex
│ │ │ │ │ ├── R$layout.dex
│ │ │ │ │ ├── R$string.dex
│ │ │ │ │ ├── R$style.dex
│ │ │ │ │ ├── R.dex
│ │ │ │ │ └── ui
│ │ │ │ │ ├── ActivityList
│ │ │ │ │ │ ├── AboutScreen$1.dex
│ │ │ │ │ │ ├── AboutScreen$2.dex
│ │ │ │ │ │ ├── AboutScreen$3.dex
│ │ │ │ │ │ ├── AboutScreen$4.dex
│ │ │ │ │ │ ├── AboutScreen$5.dex
│ │ │ │ │ │ ├── AboutScreen$6.dex
│ │ │ │ │ │ ├── AboutScreen$7.dex
│ │ │ │ │ │ ├── AboutScreen$AboutWebViewClient.dex
│ │ │ │ │ │ ├── AboutScreen.dex
│ │ │ │ │ │ ├── ActivitySplashScreen$1.dex
│ │ │ │ │ │ └── ActivitySplashScreen.dex
│ │ │ │ │ ├── DownLoaderTask$1.dex
│ │ │ │ │ ├── DownLoaderTask$ProgressReportingOutputStream.dex
│ │ │ │ │ ├── DownLoaderTask.dex
│ │ │ │ │ ├── SampleAppMenu
│ │ │ │ │ │ ├── SampleAppMenu$1.dex
│ │ │ │ │ │ ├── SampleAppMenu$GestureListener$1.dex
│ │ │ │ │ │ ├── SampleAppMenu$GestureListener.dex
│ │ │ │ │ │ ├── SampleAppMenuAnimator.dex
│ │ │ │ │ │ ├── SampleAppMenu.dex
│ │ │ │ │ │ ├── SampleAppMenuGroup$1.dex
│ │ │ │ │ │ ├── SampleAppMenuGroup$2.dex
│ │ │ │ │ │ ├── SampleAppMenuGroup$3.dex
│ │ │ │ │ │ ├── SampleAppMenuGroup.dex
│ │ │ │ │ │ ├── SampleAppMenuInterface.dex
│ │ │ │ │ │ └── SampleAppMenuView.dex
│ │ │ │ │ ├── ZipExtractorTask$1.dex
│ │ │ │ │ ├── ZipExtractorTask$ProgressReportingOutputStream.dex
│ │ │ │ │ └── ZipExtractorTask.dex
│ │ │ │ ├── 6.jar
│ │ │ │ ├── 7.jar
│ │ │ │ ├── 8.jar
│ │ │ │ ├── 9.jar
│ │ │ │ └── __content__.json
│ │ │ ├── dexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── externalLibsDexMerger
│ │ │ │ └── debug
│ │ │ │ ├── 0
│ │ │ │ │ └── classes.dex
│ │ │ │ └── __content__.json
│ │ │ ├── mergeJavaRes
│ │ │ │ └── debug
│ │ │ │ ├── 0.jar
│ │ │ │ └── __content__.json
│ │ │ └── mergeJniLibs
│ │ │ └── debug
│ │ │ ├── 0
│ │ │ │ └── lib
│ │ │ │ ├── arm64-v8a
│ │ │ │ │ └── libVuforia.so
│ │ │ │ ├── armeabi-v7a
│ │ │ │ │ └── libVuforia.so
│ │ │ │ └── x86
│ │ │ │ └── libVuforia.so
│ │ │ └── __content__.json
│ │ ├── outputs
│ │ │ ├── apk
│ │ │ │ └── debug
│ │ │ │ ├── output.json
│ │ │ │ └── test1-debug.apk
│ │ │ └── logs
│ │ │ └── manifest-merger-debug-report.txt
│ │ └── tmp
│ │ └── bundleAppClassesDebug
│ │ └── MANIFEST.MF
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── assets
│ │ ├── StonesAndChips.dat
│ │ ├── StonesAndChips.xml
│ │ └── VideoPlayback
│ │ ├── busy.png
│ │ ├── error.png
│ │ ├── green_flag.mp4
│ │ ├── play.png
│ │ ├── preview_alpha.png
│ │ ├── preview_solid.png
│ │ ├── VP_about.html
│ │ ├── VuforiaSizzleReel_1.mp4
│ │ ├── VuforiaSizzleReel_1.png
│ │ ├── VuforiaSizzleReel_2.mp4
│ │ └── VuforiaSizzleReel_2.png
│ ├── java
│ │ ├── build
│ │ │ ├── include
│ │ │ │ └── Vuforia
│ │ │ │ ├── Anchor.h
│ │ │ │ ├── AnchorResult.h
│ │ │ │ ├── Area.h
│ │ │ │ ├── Box3D.h
│ │ │ │ ├── CameraCalibration.h
│ │ │ │ ├── CameraDevice.h
│ │ │ │ ├── CameraField.h
│ │ │ │ ├── CustomViewerParameters.h
│ │ │ │ ├── CylinderTarget.h
│ │ │ │ ├── CylinderTargetResult.h
│ │ │ │ ├── DataSet.h
│ │ │ │ ├── Device.h
│ │ │ │ ├── DeviceTrackable.h
│ │ │ │ ├── DeviceTrackableResult.h
│ │ │ │ ├── DeviceTracker.h
│ │ │ │ ├── Driver
│ │ │ │ │ └── Driver.h
│ │ │ │ ├── EyeID.h
│ │ │ │ ├── EyewearCalibrationProfileManager.h
│ │ │ │ ├── EyewearCalibrationReading.h
│ │ │ │ ├── EyewearDevice.h
│ │ │ │ ├── EyewearUserCalibrator.h
│ │ │ │ ├── Frame.h
│ │ │ │ ├── GLRenderer.h
│ │ │ │ ├── GuideView.h
│ │ │ │ ├── HandheldTransformModel.h
│ │ │ │ ├── HeadTransformModel.h
│ │ │ │ ├── HitTestResult.h
│ │ │ │ ├── Illumination.h
│ │ │ │ ├── Image.h
│ │ │ │ ├── ImageTargetBuilder.h
│ │ │ │ ├── ImageTarget.h
│ │ │ │ ├── ImageTargetResult.h
│ │ │ │ ├── InstanceId.h
│ │ │ │ ├── List.h
│ │ │ │ ├── Matrices.h
│ │ │ │ ├── Mesh.h
│ │ │ │ ├── ModelTarget.h
│ │ │ │ ├── ModelTargetResult.h
│ │ │ │ ├── MultiTarget.h
│ │ │ │ ├── MultiTargetResult.h
│ │ │ │ ├── NonCopyable.h
│ │ │ │ ├── Obb2D.h
│ │ │ │ ├── Obb3D.h
│ │ │ │ ├── ObjectTarget.h
│ │ │ │ ├── ObjectTargetResult.h
│ │ │ │ ├── ObjectTracker.h
│ │ │ │ ├── PositionalDeviceTracker.h
│ │ │ │ ├── Rectangle.h
│ │ │ │ ├── Renderer.h
│ │ │ │ ├── RenderingPrimitives.h
│ │ │ │ ├── RotationalDeviceTracker.h
│ │ │ │ ├── SmartTerrain.h
│ │ │ │ ├── State.h
│ │ │ │ ├── StateUpdater.h
│ │ │ │ ├── System.h
│ │ │ │ ├── TargetFinder.h
│ │ │ │ ├── TargetSearchResult.h
│ │ │ │ ├── Tool.h
│ │ │ │ ├── Trackable.h
│ │ │ │ ├── TrackableResult.h
│ │ │ │ ├── TrackableSource.h
│ │ │ │ ├── Tracker.h
│ │ │ │ ├── TrackerManager.h
│ │ │ │ ├── TransformModel.h
│ │ │ │ ├── Type.h
│ │ │ │ ├── UpdateCallback.h
│ │ │ │ ├── Vectors.h
│ │ │ │ ├── VideoBackgroundConfig.h
│ │ │ │ ├── VideoBackgroundTextureInfo.h
│ │ │ │ ├── VideoMode.h
│ │ │ │ ├── ViewerParameters.h
│ │ │ │ ├── ViewerParametersList.h
│ │ │ │ ├── View.h
│ │ │ │ ├── ViewList.h
│ │ │ │ ├── VirtualButton.h
│ │ │ │ ├── VirtualButtonResult.h
│ │ │ │ ├── Vuforia_Android.h
│ │ │ │ ├── Vuforia.h
│ │ │ │ ├── VuMarkTarget.h
│ │ │ │ ├── VuMarkTargetResult.h
│ │ │ │ └── VuMarkTemplate.h
│ │ │ ├── java
│ │ │ │ └── Vuforia
│ │ │ │ └── Vuforia.jar
│ │ │ └── lib
│ │ │ ├── arm64-v8a
│ │ │ │ └── libVuforia.so
│ │ │ ├── armeabi-v7a
│ │ │ │ └── libVuforia.so
│ │ │ └── x86
│ │ │ └── libVuforia.so
│ │ └── com
│ │ └── vuforia
│ │ ├── SampleApplication
│ │ │ ├── SampleApplicationControl.java
│ │ │ ├── SampleApplicationException.java
│ │ │ ├── SampleApplicationSession.java
│ │ │ ├── SampleAppRendererControl.java
│ │ │ ├── SampleAppRenderer.java
│ │ │ └── utils
│ │ │ ├── CubeObject.java
│ │ │ ├── CubeShaders.java
│ │ │ ├── LineShaders.java
│ │ │ ├── LoadingDialogHandler.java
│ │ │ ├── MeshObject.java
│ │ │ ├── SampleApplication3DModel.java
│ │ │ ├── SampleApplicationGLView.java
│ │ │ ├── SampleMath.java
│ │ │ ├── SampleUtils.java
│ │ │ ├── Teapot.java
│ │ │ ├── Texture.java
│ │ │ └── VideoBackgroundShader.java
│ │ └── VideoPlayback
│ │ ├── app
│ │ │ └── VideoPlayback
│ │ │ ├── FullscreenPlayback.java
│ │ │ ├── KeyFrameShaders.java
│ │ │ ├── VideoPlayback.java
│ │ │ ├── VideoPlaybackRenderer.java
│ │ │ ├── VideoPlaybackShaders.java
│ │ │ └── VideoPlayerHelper.java
│ │ └── ui
│ │ ├── ActivityList
│ │ │ ├── AboutScreen.java
│ │ │ └── ActivitySplashScreen.java
│ │ ├── DownLoaderTask.java
│ │ ├── SampleAppMenu
│ │ │ ├── SampleAppMenuAnimator.java
│ │ │ ├── SampleAppMenuGroup.java
│ │ │ ├── SampleAppMenuInterface.java
│ │ │ ├── SampleAppMenu.java
│ │ │ └── SampleAppMenuView.java
│ │ └── ZipExtractorTask.java
│ └── res
│ ├── drawable
│ │ ├── icon.png
│ │ ├── logo.png
│ │ └── vuforia_splash.png
│ ├── drawable-hdpi
│ │ ├── icon.png
│ │ └── logo.png
│ ├── drawable-ldpi
│ │ ├── icon.png
│ │ └── logo.png
│ ├── drawable-mdpi
│ │ ├── icon.png
│ │ └── logo.png
│ ├── drawable-xhdpi
│ │ ├── icon.png
│ │ └── logo.png
│ ├── drawable-xxhdpi
│ │ ├── icon.png
│ │ └── logo.png
│ ├── layout
│ │ ├── about_screen.xml
│ │ ├── camera_overlay.xml
│ │ ├── fullscreen_layout.xml
│ │ ├── sample_app_menu_group_divider.xml
│ │ ├── sample_app_menu_group_radio_button.xml
│ │ ├── sample_app_menu_group.xml
│ │ ├── sample_app_menu_layer.xml
│ │ └── splash_screen.xml
│ ├── values
│ │ ├── colors.xml
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-hdpi
│ │ └── dimens.xml
│ ├── values-ldpi
│ │ └── dimens.xml
│ ├── values-mdpi
│ │ └── dimens.xml
│ ├── values-v13
│ │ └── styles.xml
│ ├── values-xhdpi
│ │ └── dimens.xml
│ └── values-xxhdpi
│ └── dimens.xml
├── build
│ └── android-profile
│ ├── profile-2018-10-18-14-36-24-041.json
│ ├── profile-2018-10-18-14-36-24-041.rawproto
│ ├── profile-2018-10-18-14-36-36-191.json
│ ├── profile-2018-10-18-14-36-36-191.rawproto
│ ├── profile-2018-10-18-14-37-49-578.json
│ ├── profile-2018-10-18-14-37-49-578.rawproto
│ ├── profile-2018-10-18-14-37-54-993.json
│ ├── profile-2018-10-18-14-37-54-993.rawproto
│ ├── profile-2018-10-18-14-41-55-879.json
│ ├── profile-2018-10-18-14-41-55-879.rawproto
│ ├── profile-2018-10-18-14-42-22-092.json
│ ├── profile-2018-10-18-14-42-22-092.rawproto
│ ├── profile-2018-10-18-14-43-42-732.json
│ ├── profile-2018-10-18-14-43-42-732.rawproto
│ ├── profile-2018-10-18-14-43-57-372.json
│ ├── profile-2018-10-18-14-43-57-372.rawproto
│ ├── profile-2018-10-18-14-46-15-852.json
│ ├── profile-2018-10-18-14-46-15-852.rawproto
│ ├── profile-2018-10-18-14-47-00-457.json
│ ├── profile-2018-10-18-14-47-00-457.rawproto
│ ├── profile-2018-10-18-14-47-45-317.json
│ ├── profile-2018-10-18-14-47-45-317.rawproto
│ ├── profile-2018-10-18-15-04-07-319.json
│ ├── profile-2018-10-18-15-04-07-319.rawproto
│ ├── profile-2018-10-18-15-06-30-360.json
│ ├── profile-2018-10-18-15-06-30-360.rawproto
│ ├── profile-2018-10-18-15-12-16-843.json
│ ├── profile-2018-10-18-15-12-16-843.rawproto
│ ├── profile-2018-10-18-15-21-55-153.json
│ ├── profile-2018-10-18-15-21-55-153.rawproto
│ ├── profile-2018-10-18-15-24-30-238.json
│ ├── profile-2018-10-18-15-24-30-238.rawproto
│ ├── profile-2018-10-18-15-26-59-288.json
│ ├── profile-2018-10-18-15-26-59-288.rawproto
│ ├── profile-2018-10-18-15-30-32-088.json
│ ├── profile-2018-10-18-15-30-32-088.rawproto
│ ├── profile-2018-10-18-15-35-37-031.json
│ ├── profile-2018-10-18-15-35-37-031.rawproto
│ ├── profile-2018-10-18-15-51-13-504.json
│ ├── profile-2018-10-18-15-51-13-504.rawproto
│ ├── profile-2018-10-18-16-05-36-787.json
│ ├── profile-2018-10-18-16-05-36-787.rawproto
│ ├── profile-2018-10-18-16-17-55-899.json
│ ├── profile-2018-10-18-16-17-55-899.rawproto
│ ├── profile-2018-10-18-16-23-03-262.json
│ ├── profile-2018-10-18-16-23-03-262.rawproto
│ ├── profile-2018-10-18-16-27-35-680.json
│ ├── profile-2018-10-18-16-27-35-680.rawproto
│ ├── profile-2018-10-18-16-28-12-599.json
│ ├── profile-2018-10-18-16-28-12-599.rawproto
│ ├── profile-2018-10-18-16-29-43-906.json
│ ├── profile-2018-10-18-16-29-43-906.rawproto
│ ├── profile-2018-10-18-16-33-54-082.json
│ ├── profile-2018-10-18-16-33-54-082.rawproto
│ ├── profile-2018-10-18-16-36-17-646.json
│ ├── profile-2018-10-18-16-36-17-646.rawproto
│ ├── profile-2018-10-18-16-36-49-249.json
│ ├── profile-2018-10-18-16-36-49-249.rawproto
│ ├── profile-2018-10-18-16-48-13-327.json
│ ├── profile-2018-10-18-16-48-13-327.rawproto
│ ├── profile-2018-10-18-16-55-20-303.json
│ ├── profile-2018-10-18-16-55-20-303.rawproto
│ ├── profile-2018-10-18-17-04-03-243.json
│ ├── profile-2018-10-18-17-04-03-243.rawproto
│ ├── profile-2018-10-18-17-04-44-309.json
│ ├── profile-2018-10-18-17-04-44-309.rawproto
│ ├── profile-2018-10-18-17-05-01-273.json
│ ├── profile-2018-10-18-17-05-01-273.rawproto
│ ├── profile-2018-10-18-17-07-56-678.json
│ ├── profile-2018-10-18-17-07-56-678.rawproto
│ ├── profile-2018-10-18-17-08-24-334.json
│ ├── profile-2018-10-18-17-08-24-334.rawproto
│ ├── profile-2018-10-18-17-08-48-610.json
│ ├── profile-2018-10-18-17-08-48-610.rawproto
│ ├── profile-2018-10-18-17-14-51-134.json
│ ├── profile-2018-10-18-17-14-51-134.rawproto
│ ├── profile-2018-10-18-17-18-02-173.json
│ ├── profile-2018-10-18-17-18-02-173.rawproto
│ ├── profile-2018-10-18-17-19-40-601.json
│ ├── profile-2018-10-18-17-19-40-601.rawproto
│ ├── profile-2018-10-18-17-20-55-779.json
│ ├── profile-2018-10-18-17-20-55-779.rawproto
│ ├── profile-2018-10-18-17-23-16-923.json
│ ├── profile-2018-10-18-17-23-16-923.rawproto
│ ├── profile-2018-10-18-17-24-42-627.json
│ ├── profile-2018-10-18-17-24-42-627.rawproto
│ ├── profile-2018-10-18-17-26-30-925.json
│ ├── profile-2018-10-18-17-26-30-925.rawproto
│ ├── profile-2018-10-18-17-28-05-196.json
│ ├── profile-2018-10-18-17-28-05-196.rawproto
│ ├── profile-2018-10-18-17-35-38-582.json
│ ├── profile-2018-10-18-17-35-38-582.rawproto
│ ├── profile-2018-10-18-17-45-33-928.json
│ ├── profile-2018-10-18-17-45-33-928.rawproto
│ ├── profile-2018-10-18-17-45-55-115.json
│ ├── profile-2018-10-18-17-45-55-115.rawproto
│ ├── profile-2018-10-18-17-51-15-594.json
│ ├── profile-2018-10-18-17-51-15-594.rawproto
│ ├── profile-2018-10-18-17-52-43-320.json
│ ├── profile-2018-10-18-17-52-43-320.rawproto
│ ├── profile-2018-10-18-18-01-36-254.json
│ ├── profile-2018-10-18-18-01-36-254.rawproto
│ ├── profile-2018-10-18-18-05-04-750.json
│ ├── profile-2018-10-18-18-05-04-750.rawproto
│ ├── profile-2018-10-18-18-12-39-035.json
│ ├── profile-2018-10-18-18-12-39-035.rawproto
│ ├── profile-2018-10-18-18-13-33-134.json
│ ├── profile-2018-10-18-18-13-33-134.rawproto
│ ├── profile-2018-10-19-10-30-06-822.json
│ ├── profile-2018-10-19-10-30-06-822.rawproto
│ ├── profile-2018-10-19-10-30-18-434.json
│ ├── profile-2018-10-19-10-30-18-434.rawproto
│ ├── profile-2018-10-19-11-36-34-353.json
│ ├── profile-2018-10-19-11-36-34-353.rawproto
│ ├── profile-2018-10-19-11-36-43-458.json
│ ├── profile-2018-10-19-11-36-43-458.rawproto
│ ├── profile-2018-10-19-14-51-30-591.json
│ ├── profile-2018-10-19-14-51-30-591.rawproto
│ ├── profile-2018-10-19-15-22-05-399.json
│ ├── profile-2018-10-19-15-22-05-399.rawproto
│ ├── profile-2018-10-19-15-25-46-945.json
│ ├── profile-2018-10-19-15-25-46-945.rawproto
│ ├── profile-2018-10-19-15-29-50-745.json
│ ├── profile-2018-10-19-15-29-50-745.rawproto
│ ├── profile-2018-10-19-15-31-26-074.json
│ ├── profile-2018-10-19-15-31-26-074.rawproto
│ ├── profile-2018-10-19-15-45-00-078.json
│ ├── profile-2018-10-19-15-45-00-078.rawproto
│ ├── profile-2018-10-19-16-05-16-445.json
│ ├── profile-2018-10-19-16-05-16-445.rawproto
│ ├── profile-2018-10-19-16-07-32-000.json
│ ├── profile-2018-10-19-16-07-32-000.rawproto
│ ├── profile-2018-10-19-16-09-01-043.json
│ ├── profile-2018-10-19-16-09-01-043.rawproto
│ ├── profile-2018-10-19-17-10-22-087.json
│ ├── profile-2018-10-19-17-10-22-087.rawproto
│ ├── profile-2018-10-19-17-11-33-632.json
│ ├── profile-2018-10-19-17-11-33-632.rawproto
│ ├── profile-2018-10-19-17-13-33-458.json
│ └── profile-2018-10-19-17-13-33-458.rawproto
├── build.gradle
├── gradle
│ └── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── license.txt
├── local.properties
├── media
│ ├── chips.jpg
│ ├── stones.jpg
│ ├── target_chips_A4.pdf
│ ├── target_chips_USLetter.pdf
│ ├── target_stones_A4.pdf
│ └── target_stones_USLetter.pdf
├── readme.txt
├── settings.gradle
└── test1.iml
192 directories, 606 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论