├── .gitattributes ├── .gitignore ├── FloatingWindow ├── AndroidManifest.xml ├── Readme ├── res │ └── layout │ │ ├── float_layout.xml │ │ └── main.xml └── src │ └── com │ └── phicomm │ └── hu │ ├── FxService.java │ └── MainActivity.java ├── HTTP_POST_GET ├── HTTP_test │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── R.txt │ │ └── dexedLibs │ │ │ ├── android-support-v4-9bb97585697ee11e970272b3053997e7.jar │ │ │ ├── android-support-v7-appcompat-33823c290759cfc5bdb58532de8a2861.jar │ │ │ └── appcompat_v7-1628a43fb8b0f15040e9166fbbfe1cc3.jar │ ├── gen │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ └── com │ │ │ └── example │ │ │ └── http_test │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── res │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── example │ │ └── http_test │ │ └── MainActivity.java └── beautifulzzzz │ ├── .mymetadata │ ├── .settings │ ├── .jsdtscope │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.jsdt.ui.superType.container │ └── org.eclipse.wst.jsdt.ui.superType.name │ ├── WebRoot │ ├── META-INF │ │ └── MANIFEST.MF │ ├── WEB-INF │ │ └── web.xml │ └── index.jsp │ └── src │ └── hello.java ├── README.md ├── 周边蓝牙强弱搜索 ├── AndroidManifest.xml ├── res │ ├── layout │ │ └── activity_main.xml │ └── menu │ │ └── main.xml └── src │ └── com │ └── example │ └── bt_dir │ ├── MainActivity (2).java │ └── MainActivity.java └── 枪林弹雨 ├── AndroidManifest.xml ├── res └── layout │ └── main.xml └── src └── com └── pg ├── Boom.java ├── Bullet.java ├── Control.java ├── Enemy.java ├── GameBg.java ├── GameLost.java ├── GameMenu.java ├── MainActivity.java ├── MySurfaceView.java └── Player.java /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | *.class 45 | *.png 46 | *.apk 47 | *.ap_ 48 | *.dex 49 | *.classpath 50 | *.project 51 | *.prefs 52 | FloatingWindow/gen/com/phicomm/hu/BuildConfig.java 53 | FloatingWindow/bin/AndroidManifest.xml 54 | FloatingWindow/gen/com/phicomm/hu/R.java 55 | FloatingWindow/proguard.cfg 56 | *.properties 57 | FloatingWindow/res/values/strings.xml 58 | 枪林弹雨/bin/AndroidManifest.xml 59 | 枪林弹雨/bin/dexedLibs/annotations-7fd9be63f4fb806cd488a675dfe31c06.jar 60 | 枪林弹雨/bin/jarlist.cache 61 | 枪林弹雨/gen/com/pg/BuildConfig.java 62 | 枪林弹雨/gen/com/pg/R.java 63 | 枪林弹雨/proguard.cfg 64 | 枪林弹雨/res/values/strings.xml 65 | -------------------------------------------------------------------------------- /FloatingWindow/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /FloatingWindow/Readme: -------------------------------------------------------------------------------- 1 | know more from here: http://www.cnblogs.com/zjutlitao/p/4231525.html 2 | -------------------------------------------------------------------------------- /FloatingWindow/res/layout/float_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |