├── 二维码 └── QR_CodeScan │ ├── res │ ├── raw │ │ ├── .svn │ │ │ ├── text-base │ │ │ │ ├── sound.wav.svn-base │ │ │ │ ├── realm_properties.svn-base │ │ │ │ ├── beep.ogg.svn-base │ │ │ │ └── msg.ogg.svn-base │ │ │ ├── prop-base │ │ │ │ ├── msg.ogg.svn-base │ │ │ │ └── beep.ogg.svn-base │ │ │ └── entries │ │ ├── realm_properties │ │ └── beep.ogg │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── mmtitle_bg_alpha.9.PNG │ │ ├── mm_title_back_focused.9.PNG │ │ ├── mm_title_back_normal.9.PNG │ │ └── mm_title_back_pressed.9.PNG │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── values │ │ ├── color.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── ids.xml │ ├── menu │ │ └── activity_main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── drawable │ │ └── mm_title_back_btn.xml │ └── layout │ │ ├── activity_capture.xml │ │ ├── activity_main.xml │ │ ├── activity_title.xml │ │ └── main.xml │ ├── libs │ ├── zxing.jar │ └── android-support-v4.jar │ ├── ic_launcher-web.png │ ├── bin │ └── classes │ │ └── com │ │ ├── example │ │ └── qr_codescan │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$raw.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$drawable.class │ │ │ ├── MainActivity.class │ │ │ ├── MainActivity$1.class │ │ │ ├── CreateQRcodeDemo$1.class │ │ │ ├── CreateQRcodeDemo$2.class │ │ │ └── CreateQRcodeDemo.class │ │ ├── mining │ │ └── app │ │ │ └── zxing │ │ │ ├── decoding │ │ │ ├── Intents.class │ │ │ ├── DecodeThread.class │ │ │ ├── Intents$Scan.class │ │ │ ├── DecodeHandler.class │ │ │ ├── FinishListener.class │ │ │ ├── Intents$Encode.class │ │ │ ├── Intents$Share.class │ │ │ ├── InactivityTimer.class │ │ │ ├── DecodeFormatManager.class │ │ │ ├── Intents$WifiConnect.class │ │ │ ├── CaptureActivityHandler.class │ │ │ ├── Intents$SearchBookContents.class │ │ │ ├── CaptureActivityHandler$State.class │ │ │ ├── .svn │ │ │ │ ├── text-base │ │ │ │ │ ├── DecodeThread.java.svn-base │ │ │ │ │ ├── CaptureActivityHandler.java.svn-base │ │ │ │ │ ├── FinishListener.java.svn-base │ │ │ │ │ ├── InactivityTimer.java.svn-base │ │ │ │ │ ├── DecodeFormatManager.java.svn-base │ │ │ │ │ └── DecodeHandler.java.svn-base │ │ │ │ └── entries │ │ │ └── InactivityTimer$DaemonThreadFactory.class │ │ │ ├── camera │ │ │ ├── CameraManager.class │ │ │ ├── PreviewCallback.class │ │ │ ├── AutoFocusCallback.class │ │ │ ├── FlashlightManager.class │ │ │ ├── PlanarYUVLuminanceSource.class │ │ │ ├── CameraConfigurationManager.class │ │ │ └── .svn │ │ │ │ ├── text-base │ │ │ │ ├── CameraManager.java.svn-base │ │ │ │ ├── FlashlightManager.java.svn-base │ │ │ │ ├── CameraConfigurationManager.java.svn-base │ │ │ │ ├── AutoFocusCallback.java.svn-base │ │ │ │ └── PreviewCallback.java.svn-base │ │ │ │ └── entries │ │ │ └── view │ │ │ ├── ViewfinderView.class │ │ │ ├── ViewfinderResultPointCallback.class │ │ │ └── .svn │ │ │ ├── entries │ │ │ └── text-base │ │ │ └── ViewfinderResultPointCallback.java.svn-base │ │ └── minging │ │ └── app │ │ └── zxing │ │ └── activity │ │ ├── QRcodeUtils.class │ │ ├── MipcaActivityCapture.class │ │ ├── MipcaActivityCapture$1.class │ │ └── MipcaActivityCapture$2.class │ ├── src │ └── com │ │ ├── example │ │ └── qr_codescan │ │ │ ├── MainActivity.java │ │ │ └── CreateQRcodeDemo.java │ │ ├── mining │ │ └── app │ │ │ └── zxing │ │ │ ├── camera │ │ │ ├── CameraManager.java │ │ │ ├── FlashlightManager.java │ │ │ ├── CameraConfigurationManager.java │ │ │ ├── .svn │ │ │ │ ├── text-base │ │ │ │ │ ├── CameraManager.java.svn-base │ │ │ │ │ ├── FlashlightManager.java.svn-base │ │ │ │ │ ├── CameraConfigurationManager.java.svn-base │ │ │ │ │ ├── AutoFocusCallback.java.svn-base │ │ │ │ │ └── PreviewCallback.java.svn-base │ │ │ │ └── entries │ │ │ ├── AutoFocusCallback.java │ │ │ ├── PreviewCallback.java │ │ │ └── PlanarYUVLuminanceSource.java │ │ │ ├── view │ │ │ ├── ViewfinderView.java │ │ │ ├── .svn │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── ViewfinderResultPointCallback.java.svn-base │ │ │ └── ViewfinderResultPointCallback.java │ │ │ └── decoding │ │ │ ├── DecodeThread.java │ │ │ ├── CaptureActivityHandler.java │ │ │ ├── .svn │ │ │ ├── text-base │ │ │ │ ├── DecodeThread.java.svn-base │ │ │ │ ├── CaptureActivityHandler.java.svn-base │ │ │ │ ├── FinishListener.java.svn-base │ │ │ │ ├── InactivityTimer.java.svn-base │ │ │ │ ├── DecodeFormatManager.java.svn-base │ │ │ │ └── DecodeHandler.java.svn-base │ │ │ └── entries │ │ │ ├── FinishListener.java │ │ │ ├── InactivityTimer.java │ │ │ ├── DecodeFormatManager.java │ │ │ └── DecodeHandler.java │ │ └── minging │ │ └── app │ │ └── zxing │ │ └── activity │ │ ├── QRcodeUtils.java │ │ └── MipcaActivityCapture.java │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── .classpath │ ├── project.properties │ ├── proguard-project.txt │ ├── .project │ └── AndroidManifest.xml ├── 滑动开关 └── 滑动开关 │ ├── bin │ ├── 滑动开关.apk │ ├── classes.dex │ ├── resources.ap_ │ ├── MySlipSwitch.apk │ ├── MySlipSwitch 0.2.apk │ ├── MySlipSwitch 0.4.apk │ ├── classes │ │ └── com │ │ │ └── qing │ │ │ ├── R.class │ │ │ ├── R$id.class │ │ │ ├── R$attr.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$drawable.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity$2.class │ │ │ ├── MainActivity.class │ │ │ ├── MySlipSwitch.class │ │ │ └── MySlipSwitch$OnSwitchListener.class │ └── res │ │ ├── drawable-hdpi │ │ ├── bkg_switch.png │ │ ├── btn_slip.png │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ └── drawable-mdpi │ │ └── ic_launcher.png │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── res │ ├── drawable-hdpi │ │ ├── btn_slip.png │ │ ├── bkg_switch.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── values │ │ └── strings.xml │ └── layout │ │ └── main.xml │ ├── .classpath │ ├── project.properties │ ├── AndroidManifest.xml │ ├── .project │ ├── gen │ └── com │ │ └── qing │ │ └── R.java │ ├── proguard.cfg │ └── src │ └── com │ └── qing │ └── MainActivity.java ├── 录音 └── recording │ ├── bin │ ├── classes.dex │ ├── resources.ap_ │ ├── RecordingActivity.apk │ ├── classes │ │ └── demo │ │ │ └── com │ │ │ ├── R.class │ │ │ ├── R$attr.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── BuildConfig.class │ │ │ ├── R$drawable.class │ │ │ ├── RecordButton.class │ │ │ ├── RecordButton$1.class │ │ │ ├── RecordingActivity.class │ │ │ ├── RecordingActivity$1.class │ │ │ ├── RecordButton$ShowVolumeHandler.class │ │ │ ├── RecordButton$ObtainDecibelThread.class │ │ │ └── RecordButton$OnFinishedRecordListener.class │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── icon.png │ │ │ ├── mic_2.png │ │ │ ├── mic_3.png │ │ │ ├── mic_4.png │ │ │ └── mic_5.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ └── drawable-mdpi │ │ │ └── icon.png │ ├── jarlist.cache │ ├── dexedLibs │ │ └── annotations-efb7526716f7415ec1313a6f2f9affbb.jar │ └── AndroidManifest.xml │ ├── res │ ├── drawable-hdpi │ │ ├── icon.png │ │ ├── mic_2.png │ │ ├── mic_3.png │ │ ├── mic_4.png │ │ └── mic_5.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── values │ │ ├── strings.xml │ │ └── styles.xml │ ├── drawable │ │ └── round_background.xml │ └── layout │ │ └── main.xml │ ├── gen │ └── demo │ │ └── com │ │ ├── R.java │ │ ├── Manifest.java │ │ └── BuildConfig.java │ ├── .classpath │ ├── project.properties │ ├── recording.iml │ ├── .project │ ├── AndroidManifest.xml │ ├── src │ └── demo │ │ └── com │ │ └── RecordingActivity.java │ └── proguard.cfg ├── 红点 └── BangerView │ ├── bin │ └── classes │ │ └── com │ │ └── bslee │ │ └── up │ │ ├── R.class │ │ ├── R$attr.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── BadgeView.class │ │ ├── R$drawable.class │ │ └── BangerViewActivity.class │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── values │ │ └── strings.xml │ └── layout │ │ └── main.xml │ ├── .classpath │ ├── project.properties │ ├── src │ └── com │ │ └── bslee │ │ └── up │ │ └── BangerViewActivity.java │ ├── AndroidManifest.xml │ ├── gen │ └── com │ │ └── bslee │ │ └── up │ │ └── R.java │ ├── .project │ └── proguard.cfg ├── Tab效果demo └── Tab效果demo │ └── sample │ ├── res │ ├── drawable │ │ ├── http.png │ │ ├── bitmap.png │ │ ├── database.png │ │ ├── bitmap_press.png │ │ ├── http_press.png │ │ ├── database_press.png │ │ ├── tab_background.9.png │ │ ├── tab_item_press.9.png │ │ ├── icon_btimap.xml │ │ ├── icon_http.xml │ │ ├── icon_database.xml │ │ └── tab_item.xml │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values │ │ └── strings.xml │ └── layout │ │ ├── bitmap_fragment.xml │ │ ├── db_fragment.xml │ │ ├── tab_bottom_nav.xml │ │ ├── main.xml │ │ └── http_fragment.xml │ ├── libs │ └── android-support-v4.jar │ ├── gen │ └── com │ │ └── lidroid │ │ └── xutils │ │ └── sample │ │ ├── R.java │ │ ├── Manifest.java │ │ └── BuildConfig.java │ ├── project.properties │ ├── sample.iml │ ├── proguard-project.txt │ ├── AndroidManifest.xml │ └── src │ └── com │ └── lidroid │ └── xutils │ └── sample │ ├── entities │ ├── EntityBase.java │ ├── Parent.java │ └── Child.java │ └── MyActivity.java ├── 摇一摇 └── YaoYaoDemo │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── values │ │ └── strings.xml │ └── layout │ │ └── main.xml │ ├── gen │ └── com │ │ └── example │ │ └── YaoYaoDemo │ │ ├── R.java │ │ ├── Manifest.java │ │ └── BuildConfig.java │ ├── local.properties │ ├── project.properties │ ├── ant.properties │ ├── YaoYaoDemo.iml │ ├── proguard-project.txt │ ├── AndroidManifest.xml │ ├── src │ └── com │ │ └── example │ │ └── YaoYaoDemo │ │ ├── ShakeLitenerTestActivity.java │ │ └── ShakeListener.java │ └── build.xml ├── 重力感应器三个方向识别 └── TurnOver │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── values │ │ └── strings.xml │ └── layout │ │ └── main.xml │ ├── gen │ └── com │ │ └── example │ │ └── TurnOver │ │ ├── R.java │ │ ├── Manifest.java │ │ └── BuildConfig.java │ ├── local.properties │ ├── project.properties │ ├── ant.properties │ ├── TurnOver.iml │ ├── proguard-project.txt │ ├── AndroidManifest.xml │ └── build.xml └── README.md /二维码/QR_CodeScan/res/raw/.svn/text-base/sound.wav.svn-base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/realm_properties: -------------------------------------------------------------------------------- 1 | test: test 2 | admin: OBF:1u2a1toa1w8v1tok1u30,admin 3 | -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/滑动开关.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/滑动开关.apk -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes.dex -------------------------------------------------------------------------------- /录音/recording/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes.dex -------------------------------------------------------------------------------- /滑动开关/滑动开关/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/resources.ap_ -------------------------------------------------------------------------------- /二维码/QR_CodeScan/libs/zxing.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/libs/zxing.jar -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/.svn/text-base/realm_properties.svn-base: -------------------------------------------------------------------------------- 1 | test: test 2 | admin: OBF:1u2a1toa1w8v1tok1u30,admin 3 | -------------------------------------------------------------------------------- /录音/recording/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/resources.ap_ -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/MySlipSwitch.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/MySlipSwitch.apk -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/.svn/prop-base/msg.ogg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/raw/beep.ogg -------------------------------------------------------------------------------- /二维码/QR_CodeScan/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/ic_launcher-web.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/.svn/prop-base/beep.ogg.svn-base: -------------------------------------------------------------------------------- 1 | K 13 2 | svn:mime-type 3 | V 24 4 | application/octet-stream 5 | END 6 | -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/MySlipSwitch 0.2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/MySlipSwitch 0.2.apk -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/MySlipSwitch 0.4.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/MySlipSwitch 0.4.apk -------------------------------------------------------------------------------- /录音/recording/bin/RecordingActivity.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/RecordingActivity.apk -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/R.class -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R.class -------------------------------------------------------------------------------- /录音/recording/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /录音/recording/res/drawable-hdpi/mic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-hdpi/mic_2.png -------------------------------------------------------------------------------- /录音/recording/res/drawable-hdpi/mic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-hdpi/mic_3.png -------------------------------------------------------------------------------- /录音/recording/res/drawable-hdpi/mic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-hdpi/mic_4.png -------------------------------------------------------------------------------- /录音/recording/res/drawable-hdpi/mic_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-hdpi/mic_5.png -------------------------------------------------------------------------------- /录音/recording/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /录音/recording/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/R$id.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/res/drawable-hdpi/btn_slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/res/drawable-hdpi/btn_slip.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/libs/android-support-v4.jar -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/R$attr.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/res/drawable-hdpi/bkg_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/res/drawable-hdpi/bkg_switch.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R$attr.class -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R$id.class -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-hdpi/mic_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-hdpi/mic_2.png -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-hdpi/mic_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-hdpi/mic_3.png -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-hdpi/mic_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-hdpi/mic_4.png -------------------------------------------------------------------------------- /录音/recording/bin/res/drawable-hdpi/mic_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/res/drawable-hdpi/mic_5.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/R$layout.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/R$string.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/res/drawable-hdpi/bkg_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/res/drawable-hdpi/bkg_switch.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/res/drawable-hdpi/btn_slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/res/drawable-hdpi/btn_slip.png -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/R.class -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/http.png -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R$layout.class -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R$string.class -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R$style.class -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/摇一摇/YaoYaoDemo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/摇一摇/YaoYaoDemo/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/摇一摇/YaoYaoDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/R$drawable.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /红点/BangerView/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /红点/BangerView/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /红点/BangerView/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/bitmap.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/BuildConfig.class -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/R$drawable.class -------------------------------------------------------------------------------- /录音/recording/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependecy. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/摇一摇/YaoYaoDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/MainActivity$1.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/MainActivity$2.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/MainActivity.class -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/MySlipSwitch.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/MySlipSwitch.class -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/R$attr.class -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/R$id.class -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/database.png -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordButton.class -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | YaoYaoDemo 4 | 5 | -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/R$layout.class -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/R$string.class -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/bitmap_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/bitmap_press.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/http_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/http_press.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-hdpi/mmtitle_bg_alpha.9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-hdpi/mmtitle_bg_alpha.9.PNG -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/.svn/text-base/beep.ogg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/raw/.svn/text-base/beep.ogg.svn-base -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/raw/.svn/text-base/msg.ogg.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/raw/.svn/text-base/msg.ogg.svn-base -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordButton$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordButton$1.class -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/BadgeView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/BadgeView.class -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/R$drawable.class -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/重力感应器三个方向识别/TurnOver/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/重力感应器三个方向识别/TurnOver/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/重力感应器三个方向识别/TurnOver/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/重力感应器三个方向识别/TurnOver/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TurnOver 4 | 5 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/database_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/database_press.png -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordingActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordingActivity.class -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/tab_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/tab_background.9.png -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/tab_item_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/Tab效果demo/Tab效果demo/sample/res/drawable/tab_item_press.9.png -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-hdpi/mm_title_back_focused.9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-hdpi/mm_title_back_focused.9.PNG -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-hdpi/mm_title_back_normal.9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-hdpi/mm_title_back_normal.9.PNG -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable-hdpi/mm_title_back_pressed.9.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/res/drawable-hdpi/mm_title_back_pressed.9.PNG -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/example/qr_codescan/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/example/qr_codescan/MainActivity.java -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordingActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordingActivity$1.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$id.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$raw.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$raw.class -------------------------------------------------------------------------------- /红点/BangerView/bin/classes/com/bslee/up/BangerViewActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/红点/BangerView/bin/classes/com/bslee/up/BangerViewActivity.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$attr.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$color.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$layout.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$menu.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$string.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$style.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/example/qr_codescan/CreateQRcodeDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/example/qr_codescan/CreateQRcodeDemo.java -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/camera/CameraManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/camera/CameraManager.java -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/view/ViewfinderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/view/ViewfinderView.java -------------------------------------------------------------------------------- /滑动开关/滑动开关/bin/classes/com/qing/MySlipSwitch$OnSwitchListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/滑动开关/滑动开关/bin/classes/com/qing/MySlipSwitch$OnSwitchListener.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/R$drawable.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/minging/app/zxing/activity/QRcodeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/minging/app/zxing/activity/QRcodeUtils.java -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/DecodeThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/DecodeThread.java -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/MainActivity.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/camera/FlashlightManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/camera/FlashlightManager.java -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordButton$ShowVolumeHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordButton$ShowVolumeHandler.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/MainActivity$1.class -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordButton$ObtainDecibelThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordButton$ObtainDecibelThread.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/CreateQRcodeDemo$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/CreateQRcodeDemo$1.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/CreateQRcodeDemo$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/CreateQRcodeDemo$2.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/CreateQRcodeDemo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/example/qr_codescan/CreateQRcodeDemo.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/QRcodeUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/QRcodeUtils.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/CameraManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/CameraManager.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/DecodeThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/DecodeThread.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$Scan.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$Scan.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/view/ViewfinderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/view/ViewfinderView.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/minging/app/zxing/activity/MipcaActivityCapture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/minging/app/zxing/activity/MipcaActivityCapture.java -------------------------------------------------------------------------------- /录音/recording/bin/dexedLibs/annotations-efb7526716f7415ec1313a6f2f9affbb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/dexedLibs/annotations-efb7526716f7415ec1313a6f2f9affbb.jar -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/PreviewCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/PreviewCallback.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/DecodeHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/DecodeHandler.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/FinishListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/FinishListener.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$Encode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$Encode.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$Share.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$Share.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/CaptureActivityHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/CaptureActivityHandler.java -------------------------------------------------------------------------------- /录音/recording/bin/classes/demo/com/RecordButton$OnFinishedRecordListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/录音/recording/bin/classes/demo/com/RecordButton$OnFinishedRecordListener.class -------------------------------------------------------------------------------- /录音/recording/gen/demo/com/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package demo.com; 4 | 5 | /* This stub is for using by IDE only. It is NOT the R class actually packed into APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/AutoFocusCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/AutoFocusCallback.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/FlashlightManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/FlashlightManager.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/InactivityTimer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/InactivityTimer.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/camera/CameraConfigurationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/camera/CameraConfigurationManager.java -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/DecodeFormatManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/DecodeFormatManager.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$WifiConnect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$WifiConnect.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/MipcaActivityCapture.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/MipcaActivityCapture.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/PlanarYUVLuminanceSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/PlanarYUVLuminanceSource.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/CaptureActivityHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/CaptureActivityHandler.class -------------------------------------------------------------------------------- /录音/recording/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello World, RecordingActivity! 4 | Recording 5 | 6 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/MipcaActivityCapture$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/MipcaActivityCapture$1.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/MipcaActivityCapture$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/minging/app/zxing/activity/MipcaActivityCapture$2.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/CameraConfigurationManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/CameraConfigurationManager.class -------------------------------------------------------------------------------- /录音/recording/gen/demo/com/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package demo.com; 4 | 5 | /* This stub is for using by IDE only. It is NOT the Manifest class actually packed into APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /滑动开关/滑动开关/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, MainActivity! 5 | MySlipSwitch 0.2 6 | 7 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$SearchBookContents.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/Intents$SearchBookContents.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/view/ViewfinderResultPointCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/view/ViewfinderResultPointCallback.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/camera/.svn/text-base/CameraManager.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/camera/.svn/text-base/CameraManager.java.svn-base -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/.svn/text-base/DecodeThread.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/.svn/text-base/DecodeThread.java.svn-base -------------------------------------------------------------------------------- /红点/BangerView/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Hello World, BangerViewActivity! 5 | BangerView 6 | 7 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/CaptureActivityHandler$State.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/CaptureActivityHandler$State.class -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/gen/com/example/YaoYaoDemo/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.example.YaoYaoDemo; 4 | 5 | /* This stub is for using by IDE only. It is NOT the R class actually packed into APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/camera/.svn/text-base/FlashlightManager.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/camera/.svn/text-base/FlashlightManager.java.svn-base -------------------------------------------------------------------------------- /录音/recording/gen/demo/com/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | /** Automatically generated file. DO NOT MODIFY */ 4 | package demo.com; 5 | 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = true; 8 | } -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/gen/com/example/TurnOver/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.example.TurnOver; 4 | 5 | /* This stub is for using by IDE only. It is NOT the R class actually packed into APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/.svn/text-base/CameraManager.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/.svn/text-base/CameraManager.java.svn-base -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/.svn/text-base/DecodeThread.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/.svn/text-base/DecodeThread.java.svn-base -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/InactivityTimer$DaemonThreadFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/InactivityTimer$DaemonThreadFactory.class -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/.svn/text-base/CaptureActivityHandler.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/decoding/.svn/text-base/CaptureActivityHandler.java.svn-base -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/gen/com/lidroid/xutils/sample/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.lidroid.xutils.sample; 4 | 5 | /* This stub is for using by IDE only. It is NOT the R class actually packed into APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/.svn/text-base/FlashlightManager.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/.svn/text-base/FlashlightManager.java.svn-base -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/camera/.svn/text-base/CameraConfigurationManager.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/src/com/mining/app/zxing/camera/.svn/text-base/CameraConfigurationManager.java.svn-base -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/gen/com/example/YaoYaoDemo/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.example.YaoYaoDemo; 4 | 5 | /* This stub is for using by IDE only. It is NOT the Manifest class actually packed into APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/gen/com/example/TurnOver/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.example.TurnOver; 4 | 5 | /* This stub is for using by IDE only. It is NOT the Manifest class actually packed into APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/.svn/text-base/CameraConfigurationManager.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/camera/.svn/text-base/CameraConfigurationManager.java.svn-base -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/.svn/text-base/CaptureActivityHandler.java.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihongjiang/androidSensor/HEAD/二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/decoding/.svn/text-base/CaptureActivityHandler.java.svn-base -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/gen/com/example/YaoYaoDemo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | /** Automatically generated file. DO NOT MODIFY */ 4 | package com.example.YaoYaoDemo; 5 | 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = true; 8 | } -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/gen/com/example/TurnOver/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | /** Automatically generated file. DO NOT MODIFY */ 4 | package com.example.TurnOver; 5 | 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = true; 8 | } -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/gen/com/lidroid/xutils/sample/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.lidroid.xutils.sample; 4 | 5 | /* This stub is for using by IDE only. It is NOT the Manifest class actually packed into APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/values/color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #b0000000 5 | #60000000 6 | #c0ffff00 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | androidSensor 2 | ============= 3 | 4 | 摇一摇,录音,二维码等 5 | 6 | 7 | 安卓技术群 8 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/gen/com/lidroid/xutils/sample/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | /** Automatically generated file. DO NOT MODIFY */ 4 | package com.lidroid.xutils.sample; 5 | 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = true; 8 | } -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/menu/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /录音/recording/res/drawable/round_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/icon_btimap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/icon_http.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/icon_database.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | xUtils Sample 4 | 下载地址 5 | 下载 6 | 停止 7 | 测试 8 | 9 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | QR_CodeScan 5 | Hello world! 6 | Settings 7 | 8 | 将二维码放入框内, 即可自动扫描 9 | 10 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/drawable/tab_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | xUtils Sample 4 | Download Address 5 | Download 6 | Stop 7 | Test 8 | 9 | -------------------------------------------------------------------------------- /滑动开关/滑动开关/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /录音/recording/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /红点/BangerView/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /红点/BangerView/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-15 12 | -------------------------------------------------------------------------------- /滑动开关/滑动开关/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:15 12 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=D:\\Android40315_Platform\\android-sdk-windows 11 | -------------------------------------------------------------------------------- /红点/BangerView/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/layout/bitmap_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=D:\\Android40315_Platform\\android-sdk-windows 11 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/res/drawable/mm_title_back_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /录音/recording/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /录音/recording/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 13 | 14 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-15 15 | -------------------------------------------------------------------------------- /录音/recording/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-8 15 | -------------------------------------------------------------------------------- /摇一摇/YaoYaoDemo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-16 15 | -------------------------------------------------------------------------------- /重力感应器三个方向识别/TurnOver/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-16 15 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-10 15 | android.library.reference.1=../library 16 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/layout/db_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/src/com/mining/app/zxing/view/.svn/text-base/ViewfinderResultPointCallback.java.svn-base: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2009 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.mining.app.zxing.view; 18 | 19 | import com.google.zxing.ResultPoint; 20 | import com.google.zxing.ResultPointCallback; 21 | 22 | public final class ViewfinderResultPointCallback implements ResultPointCallback { 23 | 24 | private final ViewfinderView viewfinderView; 25 | 26 | public ViewfinderResultPointCallback(ViewfinderView viewfinderView) { 27 | this.viewfinderView = viewfinderView; 28 | } 29 | 30 | public void foundPossibleResultPoint(ResultPoint point) { 31 | viewfinderView.addPossibleResultPoint(point); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /二维码/QR_CodeScan/bin/classes/com/mining/app/zxing/view/.svn/text-base/ViewfinderResultPointCallback.java.svn-base: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2009 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.mining.app.zxing.view; 18 | 19 | import com.google.zxing.ResultPoint; 20 | import com.google.zxing.ResultPointCallback; 21 | 22 | public final class ViewfinderResultPointCallback implements ResultPointCallback { 23 | 24 | private final ViewfinderView viewfinderView; 25 | 26 | public ViewfinderResultPointCallback(ViewfinderView viewfinderView) { 27 | this.viewfinderView = viewfinderView; 28 | } 29 | 30 | public void foundPossibleResultPoint(ResultPoint point) { 31 | viewfinderView.addPossibleResultPoint(point); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /Tab效果demo/Tab效果demo/sample/res/layout/http_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 14 |