├── .gitignore ├── DemoApplication ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── compiler.xml │ ├── gradle.xml │ ├── jarRepositories.xml │ ├── misc.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── kw │ │ │ └── test │ │ │ └── demoapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── kw │ │ │ │ └── test │ │ │ │ └── demoapplication │ │ │ │ ├── MainActivity.java │ │ │ │ ├── activityfor │ │ │ │ └── MainForWardActivity.java │ │ │ │ ├── back │ │ │ │ └── BackButtonActivity.java │ │ │ │ ├── flow │ │ │ │ └── FlowButtonActivity.java │ │ │ │ ├── fragment │ │ │ │ ├── animation │ │ │ │ │ ├── AnimationActivity.java │ │ │ │ │ ├── MyFragment01.java │ │ │ │ │ └── MyFragment02.java │ │ │ │ ├── dymethid │ │ │ │ │ ├── Demo02Fragment.java │ │ │ │ │ └── Main2Activity.java │ │ │ │ ├── staticmethod │ │ │ │ │ ├── DemoFragment.java │ │ │ │ │ └── DemoFragmentActivity.java │ │ │ │ └── transdata │ │ │ │ │ ├── Main3Activity.java │ │ │ │ │ └── TransDataFragment.java │ │ │ │ ├── notification │ │ │ │ └── Main4Activity.java │ │ │ │ ├── savedInstanceState │ │ │ │ └── SaveStateActivity.java │ │ │ │ ├── service │ │ │ │ ├── one │ │ │ │ │ ├── LoacalService.java │ │ │ │ │ └── ServiceActivity.java │ │ │ │ └── two │ │ │ │ │ ├── MessengerService.java │ │ │ │ │ └── Service2Activity.java │ │ │ │ └── shadow │ │ │ │ └── ShadowActivity.java │ │ └── res │ │ │ ├── anim │ │ │ ├── fade_in.xml │ │ │ ├── fade_out.xml │ │ │ ├── slide_in.xml │ │ │ └── slide_out.xml │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── myrect.xml │ │ │ ├── layout │ │ │ ├── activity_ani1_fragment.xml │ │ │ ├── activity_ani2_fragment.xml │ │ │ ├── activity_animation.xml │ │ │ ├── activity_back_button.xml │ │ │ ├── activity_demo02_fragment.xml │ │ │ ├── activity_demo_fragment.xml │ │ │ ├── activity_float_button.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_main2.xml │ │ │ ├── activity_main3.xml │ │ │ ├── activity_main4.xml │ │ │ ├── activity_main_for_ward.xml │ │ │ ├── activity_save_state.xml │ │ │ ├── activity_service.xml │ │ │ ├── activity_service2.xml │ │ │ ├── activity_shadow.xml │ │ │ ├── demo_fragment.xml │ │ │ └── transdata.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── kw │ │ └── test │ │ └── demoapplication │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── README.md ├── android官方文档学习 ├── 1.Activity.md └── 2.fragment.md ├── 代码 ├── .recommenders │ └── index │ │ └── http___download_eclipse_org_recommenders_models_photon_ │ │ └── segments.gen ├── ListFragment │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── ListFragment.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── listfragment │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_detail_fragment.xml │ │ │ ├── activity_fragment.xml │ │ │ └── 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 │ │ └── listfragment │ │ ├── DetailFragment.java │ │ ├── MainActivity.java │ │ └── MyFragment.java ├── RemoteSystemsTempFiles │ └── .project ├── androidbutton │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidbutton │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidbutton │ │ └── MainActivity.java ├── androidchaeckbox │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidchaeckbox │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidchaeckbox │ │ └── MainActivity.java ├── androidchumo │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidchumo.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidchumo │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidchumo │ │ └── MainActivity.java ├── androidcmo │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidcmo │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidcmo │ │ ├── ChumoView.java │ │ └── MainActivity.java ├── androidcolor │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidcolor │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── example │ │ └── androidcolor │ │ └── MainActivity.java ├── androiddate │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androiddate │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androiddate │ │ └── MainActivity.java ├── androidframe │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidframe │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_fr.xml │ │ │ └── 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 │ │ └── androidframe │ │ └── MainActivity.java ├── androidgrid │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidgrid │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidgrid │ │ └── MainActivity.java ├── androidintent │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidintent.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidintent │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_seconed.xml │ │ ├── menu │ │ │ ├── main.xml │ │ │ └── seconed.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── example │ │ └── androidintent │ │ ├── MainActivity.java │ │ └── SeconedActivity.java ├── androidintentfilter │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidintentfilter.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidintentfilter │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_show.xml │ │ ├── menu │ │ │ ├── main.xml │ │ │ └── show.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── example │ │ └── androidintentfilter │ │ ├── MainActivity.java │ │ └── ShowActivity.java ├── androidlinear │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidlinear │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── login.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 │ │ └── androidlinear │ │ └── MainActivity.java ├── androidradio │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidradio │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidradio │ │ └── MainActivity.java ├── androidreletive │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidreletive │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidreletive │ │ └── MainActivity.java ├── androidres │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidres │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidres │ │ └── MainActivity.java ├── androidsensor │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidsensor.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidsensor │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_accel.xml │ │ │ ├── activity_main.xml │ │ │ └── activity_sensor.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 │ │ └── androidsensor │ │ ├── MainActivity.java │ │ ├── SensorAll.java │ │ └── accelerom.java ├── androidshijian │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidshijian.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidshijian │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidshijian │ │ └── MainActivity.java ├── androidshowshijiance │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidshowshijiance │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidshowshijiance │ │ └── MainActivity.java ├── androidtable │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidtable │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidtable │ │ └── MainActivity.java ├── androidtest │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidtest.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidtest │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidtest │ │ └── MainActivity.java ├── androidtext │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ └── classes │ │ │ └── .gitignore │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidtext │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── activity_anli.xml │ │ │ └── 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 │ │ └── androidtext │ │ └── MainActivity.java ├── androidview │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── androidview.apk │ │ ├── classes.dex │ │ ├── classes │ │ │ └── .gitignore │ │ ├── res │ │ │ └── crunch │ │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── gen │ │ └── com │ │ │ └── example │ │ │ └── androidview │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── bg.jpg │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── 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 │ │ └── androidview │ │ ├── MainActivity.java │ │ └── RabbitView.java └── fragmentlizi │ ├── .classpath │ ├── .project │ ├── .settings │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── bin │ ├── AndroidManifest.xml │ ├── classes.dex │ ├── classes │ │ └── .gitignore │ ├── fragmentlizi.apk │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ │ ├── gen │ └── com │ │ └── example │ │ └── fragmentlizi │ │ ├── BuildConfig.java │ │ └── R.java │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_we_chat.xml │ │ ├── activity_we_friend.xml │ │ ├── activity_we_list.xml │ │ └── activity_we_my.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 │ └── fragmentlizi │ ├── FriendFragment.java │ ├── ListFragment.java │ ├── MainActivity.java │ ├── MyFragment.java │ └── WeChatFragment.java ├── 其他内容 ├── 1.文件存储位置.md ├── 2.网络编程.md └── 3服务.md ├── 安卓基础 ├── 0.0AndroidMainfest.md ├── 0.1安卓入门.md ├── 1.布局.md ├── 2.组件.md ├── 3.按键.md ├── 4.TextView和EditView.md ├── 5.数据存储.md └── 6.listView.md ├── 安卓案例 ├── 1.打电话.md ├── 10.查看日志.md ├── 11.广播.md ├── 12.style样式自定义.md ├── 13.手势.md ├── 14.混合编码.md ├── 15.Notification.md ├── 16.透明效果.md ├── 17.自定义标题.md ├── 18.网络编程.md ├── 19.指南针.md ├── 2.发短信.md ├── 20.Activity的动态切换.md ├── 21.Activity的生命周期.md ├── 22.照相机的获取方法.md ├── 23.安卓访问网络资源.md ├── 24.音效使用.md ├── 25.Provider.md ├── 26.多媒体.md ├── 27.画图.md ├── 3.ViewFlipper动态切换.md ├── 4.9Path.md ├── 5.文件读写.md ├── 6.listView列表显示.md ├── 7.Activity之间的传输.md ├── 8.Activity的启动模式.md ├── 9.Intent的使用.md ├── onecode.md ├── 常用功能汇总.md └── 汇总.md ├── 音乐播放器 └── 歌词显示.md └── 项目实战 ├── 练习1 ├── 1.欢迎页的实现.md ├── 2.顶部布局实现.md ├── 3.底部导航栏的实现.md ├── 4.内容页显示.md └── 图片 │ ├── 1560497388337.png │ ├── 1560497920239.png │ ├── 1560498969601.png │ ├── 1560500922000.png │ └── 1560501245999.png └── 练习2 └── 安卓项目练习.md /.gitignore: -------------------------------------------------------------------------------- 1 | /.metadata/ 2 | /.recommenders/ 3 | -------------------------------------------------------------------------------- /DemoApplication/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | -------------------------------------------------------------------------------- /DemoApplication/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DemoApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DemoApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/java/kw/test/demoapplication/fragment/staticmethod/DemoFragmentActivity.java: -------------------------------------------------------------------------------- 1 | package kw.test.demoapplication.fragment.staticmethod; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.os.Bundle; 6 | 7 | import kw.test.demoapplication.R; 8 | 9 | public class DemoFragmentActivity extends AppCompatActivity { 10 | 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.activity_demo_fragment); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/java/kw/test/demoapplication/service/two/Service2Activity.java: -------------------------------------------------------------------------------- 1 | package kw.test.demoapplication.service.two; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.os.Bundle; 6 | 7 | import kw.test.demoapplication.R; 8 | 9 | public class Service2Activity extends AppCompatActivity { 10 | 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.activity_service2); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/java/kw/test/demoapplication/shadow/ShadowActivity.java: -------------------------------------------------------------------------------- 1 | package kw.test.demoapplication.shadow; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.os.Bundle; 6 | 7 | import kw.test.demoapplication.R; 8 | 9 | public class ShadowActivity extends AppCompatActivity { 10 | 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.activity_shadow); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/anim/slide_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/anim/slide_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/drawable/myrect.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_ani1_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_ani2_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_back_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_demo02_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_main4.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_save_state.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_service.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/activity_service2.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/demo_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/layout/transdata.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D81B60 6 | 7 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DemoApplication 3 | 4 | -------------------------------------------------------------------------------- /DemoApplication/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /DemoApplication/app/src/test/java/kw/test/demoapplication/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package kw.test.demoapplication; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /DemoApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/DemoApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DemoApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Dec 03 16:12:49 CST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 7 | -------------------------------------------------------------------------------- /DemoApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='DemoApplication' 3 | -------------------------------------------------------------------------------- /android官方文档学习/2.fragment.md: -------------------------------------------------------------------------------- 1 | # Fragment 2 | 3 | 我们需要将UI组件和Activity操作封装成模块进行使用,可以在Activity中进行操作。它必须要依赖于Activity,不可以单独存在,一个Activity可以有多个Fragment,Fragment可以被重用,并且可以接受事件,动他的增加删除。 4 | 5 | - onAttach:关联的时候调用 6 | - onCreate:创建的时候调用 7 | - onActivityCreated:activity完成oncreate调用 8 | - onStart:可见 9 | - onResume:交互 10 | - onPause:不可以交互的时候调用 11 | - onStop:不可见 12 | - onDestoryView:当从视图中移除的时候调用 13 | - onDestory销毁 14 | - onDetach:解除关联 15 | 16 | 数据之间的交互,Fragment到Activty需要自己写回调,Activity到Fragment,只需要setArgument方法 -------------------------------------------------------------------------------- /代码/.recommenders/index/http___download_eclipse_org_recommenders_models_photon_/segments.gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/.recommenders/index/http___download_eclipse_org_recommenders_models_photon_/segments.gen -------------------------------------------------------------------------------- /代码/ListFragment/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/ListFragment/.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 | -------------------------------------------------------------------------------- /代码/ListFragment/bin/ListFragment.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/ListFragment.apk -------------------------------------------------------------------------------- /代码/ListFragment/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/classes.dex -------------------------------------------------------------------------------- /代码/ListFragment/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/ListFragment/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/ListFragment/gen/com/example/listfragment/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.listfragment; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/ListFragment/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/ListFragment/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-17 15 | -------------------------------------------------------------------------------- /代码/ListFragment/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/ListFragment/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/ListFragment/res/layout/activity_detail_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/ListFragment/res/layout/activity_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /代码/ListFragment/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/ListFragment/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/ListFragment/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/ListFragment/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/ListFragment/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/ListFragment/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ListFragment 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/ListFragment/src/com/example/listfragment/DetailFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.listfragment; 2 | 3 | import android.app.Fragment; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | public class DetailFragment extends Fragment { 10 | @Override 11 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | return inflater.inflate(R.layout.activity_detail_fragment, null); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /代码/ListFragment/src/com/example/listfragment/MyFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.listfragment; 2 | 3 | import android.app.Fragment; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | public class MyFragment extends Fragment{ 10 | @Override 11 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | View view = inflater.inflate(R.layout.activity_fragment, container); 14 | return view; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /代码/RemoteSystemsTempFiles/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | RemoteSystemsTempFiles 4 | 5 | 6 | 7 | 8 | 9 | 10 | org.eclipse.rse.ui.remoteSystemsTempNature 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidbutton/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidbutton/.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 | -------------------------------------------------------------------------------- /代码/androidbutton/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidbutton/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidbutton/gen/com/example/androidbutton/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidbutton; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidbutton/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidbutton/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-21 15 | -------------------------------------------------------------------------------- /代码/androidbutton/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidbutton/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidbutton/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidbutton/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidbutton/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidbutton/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidbutton/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidbutton/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidbutton 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidbutton/src/com/example/androidbutton/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.androidbutton; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.view.Menu; 6 | import android.view.MenuItem; 7 | import android.view.WindowManager; 8 | 9 | public class MainActivity extends Activity { 10 | 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.activity_main); 15 | getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/.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 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/gen/com/example/androidchaeckbox/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidchaeckbox; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidchaeckbox/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchaeckbox/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidchaeckbox/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-21 15 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchaeckbox/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchaeckbox/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchaeckbox/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchaeckbox/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidchaeckbox/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidchaeckbox 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidchumo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidchumo/.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 | -------------------------------------------------------------------------------- /代码/androidchumo/bin/androidchumo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/androidchumo.apk -------------------------------------------------------------------------------- /代码/androidchumo/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidchumo/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidchumo/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidchumo/gen/com/example/androidchumo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidchumo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidchumo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidchumo/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-17 15 | -------------------------------------------------------------------------------- /代码/androidchumo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidchumo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidchumo/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidchumo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidchumo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidchumo/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidchumo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidchumo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidchumo 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidcmo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidcmo/.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 | -------------------------------------------------------------------------------- /代码/androidcmo/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidcmo/gen/com/example/androidcmo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidcmo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidcmo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidcmo/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-17 15 | -------------------------------------------------------------------------------- /代码/androidcmo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcmo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcmo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcmo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcmo/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidcmo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidcmo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidcmo/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidcmo/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidcmo/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidcmo 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidcmo/src/com/example/androidcmo/ChumoView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/src/com/example/androidcmo/ChumoView.java -------------------------------------------------------------------------------- /代码/androidcmo/src/com/example/androidcmo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcmo/src/com/example/androidcmo/MainActivity.java -------------------------------------------------------------------------------- /代码/androidcolor/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidcolor/.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 | -------------------------------------------------------------------------------- /代码/androidcolor/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidcolor/gen/com/example/androidcolor/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidcolor; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidcolor/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcolor/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidcolor/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-17 15 | -------------------------------------------------------------------------------- /代码/androidcolor/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcolor/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcolor/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcolor/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcolor/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcolor/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcolor/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidcolor/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidcolor/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidcolor/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidcolor/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidcolor/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidcolor/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ff0000 4 | 5 | -------------------------------------------------------------------------------- /代码/androidcolor/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidcolor/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidcolor 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androiddate/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androiddate/.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 | -------------------------------------------------------------------------------- /代码/androiddate/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androiddate/gen/com/example/androiddate/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androiddate; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androiddate/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androiddate/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androiddate/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-21 15 | -------------------------------------------------------------------------------- /代码/androiddate/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androiddate/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androiddate/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androiddate/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androiddate/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androiddate/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androiddate/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androiddate/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androiddate/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androiddate/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androiddate/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androiddate/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androiddate/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androiddate/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androiddate 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidframe/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidframe/.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 | -------------------------------------------------------------------------------- /代码/androidframe/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidframe/gen/com/example/androidframe/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidframe; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidframe/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidframe/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidframe/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-17 15 | -------------------------------------------------------------------------------- /代码/androidframe/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidframe/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidframe/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidframe/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidframe/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidframe/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidframe/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidframe/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidframe/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidframe/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidframe/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidframe/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidframe/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidframe/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidframe 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidgrid/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidgrid/.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 | -------------------------------------------------------------------------------- /代码/androidgrid/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidgrid/gen/com/example/androidgrid/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidgrid; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidgrid/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidgrid/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidgrid/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-17 15 | -------------------------------------------------------------------------------- /代码/androidgrid/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidgrid/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidgrid/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidgrid/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidgrid/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidgrid/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidgrid/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidgrid/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidgrid/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidgrid/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidgrid/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidgrid/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidgrid/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidgrid/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidgrid 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidintent/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidintent/.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 | -------------------------------------------------------------------------------- /代码/androidintent/bin/androidintent.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/androidintent.apk -------------------------------------------------------------------------------- /代码/androidintent/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidintent/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidintent/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidintent/gen/com/example/androidintent/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidintent; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidintent/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidintent/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintent/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintent/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidintent/res/menu/seconed.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidintent/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidintent/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidintent/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidintent/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidintent/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidintent 5 | Hello world! 6 | Settings 7 | SeconedActivity 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidintentfilter/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidintentfilter/.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 | -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/androidintentfilter.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/androidintentfilter.apk -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidintentfilter/gen/com/example/androidintentfilter/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidintentfilter; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidintentfilter/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidintentfilter/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidintentfilter/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidintentfilter/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidintentfilter/res/menu/show.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidintentfilter/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidintentfilter/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidintentfilter/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidintentfilter/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidintentfilter/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidintentfilter 5 | Hello world! 6 | Settings 7 | ShowActivity 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidintentfilter/src/com/example/androidintentfilter/ShowActivity.java: -------------------------------------------------------------------------------- 1 | package com.example.androidintentfilter; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.view.Menu; 6 | import android.view.MenuItem; 7 | 8 | public class ShowActivity extends Activity { 9 | 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | super.onCreate(savedInstanceState); 13 | setContentView(R.layout.activity_show); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /代码/androidlinear/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidlinear/.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 | -------------------------------------------------------------------------------- /代码/androidlinear/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidlinear/gen/com/example/androidlinear/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidlinear; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidlinear/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidlinear/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidlinear/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidlinear/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidlinear/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidlinear/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidlinear/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidlinear/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidlinear/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidlinear/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidlinear/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidlinear/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidlinear/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidlinear/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidlinear/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidlinear/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidlinear 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidradio/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidradio/.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 | -------------------------------------------------------------------------------- /代码/androidradio/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidradio/gen/com/example/androidradio/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidradio; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidradio/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidradio/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidradio/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-21 15 | -------------------------------------------------------------------------------- /代码/androidradio/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidradio/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidradio/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidradio/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidradio/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidradio/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidradio/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidradio/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidradio/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidradio/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidradio/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidradio/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidradio/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidradio/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidradio 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidradio/src/com/example/androidradio/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidradio/src/com/example/androidradio/MainActivity.java -------------------------------------------------------------------------------- /代码/androidreletive/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidreletive/.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 | -------------------------------------------------------------------------------- /代码/androidreletive/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidreletive/gen/com/example/androidreletive/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidreletive; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidreletive/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidreletive/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidreletive/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidreletive/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidreletive/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidreletive/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidreletive/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidreletive/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidreletive/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidreletive/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidreletive/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidreletive/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidreletive/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidreletive/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidreletive/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidreletive/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidreletive 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidres/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidres/.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 | -------------------------------------------------------------------------------- /代码/androidres/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidres/gen/com/example/androidres/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidres; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidres/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidres/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidres/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-17 15 | -------------------------------------------------------------------------------- /代码/androidres/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidres/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidres/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidres/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidres/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidres/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidres/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidres/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidres/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidres/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidres/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidres/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidres/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidres/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidres 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidsensor/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidsensor/.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 | -------------------------------------------------------------------------------- /代码/androidsensor/bin/androidsensor.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/androidsensor.apk -------------------------------------------------------------------------------- /代码/androidsensor/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidsensor/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidsensor/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidsensor/gen/com/example/androidsensor/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidsensor; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidsensor/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidsensor/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidsensor/res/layout/activity_accel.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidsensor/res/layout/activity_sensor.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidsensor/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidsensor/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidsensor/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidsensor/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidsensor/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidsensor/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidsensor 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidsensor/src/com/example/androidsensor/accelerom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidsensor/src/com/example/androidsensor/accelerom.java -------------------------------------------------------------------------------- /代码/androidshijian/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidshijian/.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 | -------------------------------------------------------------------------------- /代码/androidshijian/bin/androidshijian.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/androidshijian.apk -------------------------------------------------------------------------------- /代码/androidshijian/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidshijian/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidshijian/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidshijian/gen/com/example/androidshijian/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidshijian; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidshijian/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidshijian/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshijian/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidshijian/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidshijian/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidshijian/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidshijian/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidshijian/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidshijian 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidshijian/src/com/example/androidshijian/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshijian/src/com/example/androidshijian/MainActivity.java -------------------------------------------------------------------------------- /代码/androidshowshijiance/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/.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 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/gen/com/example/androidshowshijiance/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidshowshijiance; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidshowshijiance/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshowshijiance/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshowshijiance/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshowshijiance/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshowshijiance/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidshowshijiance/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidshowshijiance/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidshowshijiance 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidtable/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidtable/.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 | -------------------------------------------------------------------------------- /代码/androidtable/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidtable/gen/com/example/androidtable/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidtable; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidtable/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtable/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidtable/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-21 15 | -------------------------------------------------------------------------------- /代码/androidtable/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtable/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtable/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtable/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtable/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtable/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtable/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtable/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtable/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidtable/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidtable/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidtable/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidtable/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidtable/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidtable 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidtest/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidtest/.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 | -------------------------------------------------------------------------------- /代码/androidtest/bin/androidtest.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/androidtest.apk -------------------------------------------------------------------------------- /代码/androidtest/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidtest/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidtest/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidtest/gen/com/example/androidtest/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidtest; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidtest/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidtest/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-17 15 | -------------------------------------------------------------------------------- /代码/androidtest/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtest/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtest/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidtest/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidtest/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidtest/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidtest/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidtest/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidtest 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidtext/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidtext/.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 | -------------------------------------------------------------------------------- /代码/androidtext/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidtext/gen/com/example/androidtext/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidtext; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidtext/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtext/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidtext/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-17 15 | -------------------------------------------------------------------------------- /代码/androidtext/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtext/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtext/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtext/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtext/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtext/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtext/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidtext/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidtext/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidtext/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidtext/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidtext/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidtext/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidtext/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidtext 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidview/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/androidview/.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 | -------------------------------------------------------------------------------- /代码/androidview/bin/androidview.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/androidview.apk -------------------------------------------------------------------------------- /代码/androidview/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/classes.dex -------------------------------------------------------------------------------- /代码/androidview/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/androidview/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/androidview/gen/com/example/androidview/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.androidview; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/androidview/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/androidview/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-17 15 | -------------------------------------------------------------------------------- /代码/androidview/res/drawable-hdpi/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/res/drawable-hdpi/bg.jpg -------------------------------------------------------------------------------- /代码/androidview/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/androidview/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidview/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/androidview/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/androidview/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/androidview/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/androidview/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidview 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/androidview/src/com/example/androidview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/src/com/example/androidview/MainActivity.java -------------------------------------------------------------------------------- /代码/androidview/src/com/example/androidview/RabbitView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/androidview/src/com/example/androidview/RabbitView.java -------------------------------------------------------------------------------- /代码/fragmentlizi/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /代码/fragmentlizi/.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 | -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/classes.dex -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/fragmentlizi.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/fragmentlizi.apk -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/bin/resources.ap_ -------------------------------------------------------------------------------- /代码/fragmentlizi/gen/com/example/fragmentlizi/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.fragmentlizi; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /代码/fragmentlizi/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/ic_launcher-web.png -------------------------------------------------------------------------------- /代码/fragmentlizi/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-17 15 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/代码/fragmentlizi/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /代码/fragmentlizi/res/layout/activity_we_chat.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/layout/activity_we_friend.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/layout/activity_we_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/layout/activity_we_my.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /代码/fragmentlizi/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fragmentlizi 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /代码/fragmentlizi/src/com/example/fragmentlizi/FriendFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.fragmentlizi; 2 | 3 | import android.app.Fragment; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | public class FriendFragment extends Fragment{ 10 | @Override 11 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | View view = inflater.inflate(R.layout.activity_we_friend,null); 14 | return view; 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /代码/fragmentlizi/src/com/example/fragmentlizi/ListFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.fragmentlizi; 2 | 3 | import android.app.Fragment; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | public class ListFragment extends Fragment{ 10 | @Override 11 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | View view = inflater.inflate(R.layout.activity_we_list,null); 14 | return view; 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /代码/fragmentlizi/src/com/example/fragmentlizi/MyFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.fragmentlizi; 2 | 3 | import android.app.Fragment; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | public class MyFragment extends Fragment{ 10 | @Override 11 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | View view = inflater.inflate(R.layout.activity_we_my,null); 14 | return view; 15 | } 16 | } -------------------------------------------------------------------------------- /代码/fragmentlizi/src/com/example/fragmentlizi/WeChatFragment.java: -------------------------------------------------------------------------------- 1 | package com.example.fragmentlizi; 2 | 3 | import android.app.Fragment; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | 9 | public class WeChatFragment extends Fragment{ 10 | @Override 11 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { 12 | // TODO Auto-generated method stub 13 | View view = inflater.inflate(R.layout.activity_we_chat,null); 14 | return view; 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /其他内容/2.网络编程.md: -------------------------------------------------------------------------------- 1 | ### 网络编程 2 | 3 | - 网络图片查看器(重点) 4 | 5 | 1. 创建Url对象 6 | 2. 用Url对象打开连接 7 | 3. 设置请求参数,设置请求方式 8 | 4. 拿到返回状态 返回码:200成功 3xx重定向 4xx资源错误 5xx服务器错误 9 | 5. 从连接中获取服务端返回的二进制输入流 10 | 6. 在清单文件中添加访问互联网的权限 -------------------------------------------------------------------------------- /安卓案例/10.查看日志.md: -------------------------------------------------------------------------------- 1 | 加入说运行发生错误,可以通过Laycat查看信息 2 | 点击info:就是info以上的错误。 3 | 4 | 将应用部署手机上 5 | (1)安装驱动 6 | (2)USE连接PC 7 | (3)打开手机视图 8 | 9 | 10 | 11 | 12 | 13 | [目录](https://github.com/wangwangla/biji/tree/master/README.md) -------------------------------------------------------------------------------- /安卓案例/15.Notification.md: -------------------------------------------------------------------------------- 1 | 第十八章 Notification的使用 2 | 一、Notification是一种全局的效果通知,可以在系统栏显示,当App向系统发生通知时,将其显示 -------------------------------------------------------------------------------- /安卓案例/17.自定义标题.md: -------------------------------------------------------------------------------- 1 | 第二十六章 自定标题 2 | 一、创建项目 3 | 二、写逻辑 4 | @Override 5 | protected void onCreate(Bundle savedInstanceState) { 6 | super.onCreate(savedInstanceState); 7 | requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); 8 | setContentView(R.layout.activity_main); 9 | getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title); 10 | } 11 | 12 | 13 | 三、创建标题样式 14 | 15 | 16 | 四、 -------------------------------------------------------------------------------- /安卓案例/21.Activity的生命周期.md: -------------------------------------------------------------------------------- 1 | 第十三章 Activity的生命周期 2 | 一、Activity的三种声明周期 3 | 1.运行状态,处于最前端,可以响应用户的请求。 4 | 2.暂停状态,就是处于当弹出框这种虽然覆盖,但是并未将其完全覆盖掉的情况。 5 | 3.停止状态,一个Activity将其下面的Activity覆盖掉的情况就处于暂停状态。 6 | 7 | 上面的几种状态会有7个方法调用。 8 | 二、Activity的生命图谱 9 | 1.图 10 | 分析:首先创建的时候会调用onCreate方法,这个方法会创建一个Activity,然后onstart将页面启动,执行到onResume方法的时候会将其放置到最前端,可以进行交互,假如创建了一个Activity就会将其覆盖,这个时候执行的是onPause方法,当上面的activity处理结束后就会将其显示在最前端,当完全覆盖的时候就会执行onstop方法,处于停止状态,如果内存不足的情况就会将其销毁,再次显示的时候就会重新创建一个。 11 | -------------------------------------------------------------------------------- /安卓案例/25.Provider.md: -------------------------------------------------------------------------------- 1 | ### Content Provider 2 | 3 | 使用基于数据模型的简单表格来提供其中的数据。 4 | 5 | 6 | 7 | URL和uri 8 | 9 | URL:协议固定,域名固定,网站资源(动态),统一资源的唯一定位符 10 | 11 | uri:统一资源标识符 12 | 13 | 14 | 15 | 步骤: 16 | 继承ContentProvider类 17 | 18 | 声明ContentProvider 在androidMainfest.xml中定义 19 | 20 | 使用contentProvider执行添加删除更新 -------------------------------------------------------------------------------- /安卓案例/26.多媒体.md: -------------------------------------------------------------------------------- 1 | ## 多媒体 2 | 3 | #### 音频播放 4 | 5 | MediaPlayer支持的格式有:mp3、ogg、3gb、wav格式 6 | 7 | 它是安卓提供播放视频或者音频文件件或者流的一个类。 8 | 9 | - 步骤 10 | 11 | - 创建一个MediaPlayer 12 | 13 | - 装载一个音频文件 14 | 15 | - 可以根据资源文件来创建 16 | - 使用url来播放 17 | 18 | - 装载音频 19 | 20 | - 除了上面的方法外,还有一个是无惨构造 适用于连续播放多个视频的情况。 21 | 22 | 通过setDataSource 使用prepare真正的装载。 23 | 24 | - 缺点 25 | 26 | - 延迟时间长,真有资源多 27 | - 不支持同时播放多个音频 28 | 29 | #### SoundPool 30 | 31 | 只可以播放多小的音频,音效池 32 | 33 | - 步骤: 34 | - 创建对象 35 | - 加载音频 36 | - 播放音频 37 | -------------------------------------------------------------------------------- /安卓案例/27.画图.md: -------------------------------------------------------------------------------- 1 | 2 | ## 画图 3 | 4 | 画图有画笔和画布,画笔有颜色,粗细,透明度,填充样式等。画布可以改变颜色的尺寸。 5 | 6 | 实现方法: 7 | 8 | ​ 创一个继承View的类,实现onDraw的方法,然后将其添加到Activity中。 9 | -------------------------------------------------------------------------------- /安卓案例/8.Activity的启动模式.md: -------------------------------------------------------------------------------- 1 | 第十一章 Activity 使用启动模式 2 | 一、创建项目 3 | 二、知识点介绍 4 | 1.启动模式一共有四种 5 | (1)图片展示 6 | 7 | 默认的模式,每次都会创建一个Activity实例,并放入认为任务栈中。当点击返回的时候就会关闭一个,将下一个为栈顶。 8 | singleTop如果任务刚好存在栈顶,就重用该实例,否则就会创建新的实例并放入栈顶,也就是不在栈顶就会创建 9 | SingleTask如果栈中已经存在实例,那么就会使用该实例,如果在栈顶直接使用,如不在栈顶那么就将上面的移除,如果不存在,那么就创建。 10 | singleInstance对于某些实例,让多个应用共享该栈中的实例,一旦该实例存在,那么就会重用它。 -------------------------------------------------------------------------------- /安卓案例/onecode.md: -------------------------------------------------------------------------------- 1 | ## -------------------------------------------------------------------------------- /音乐播放器/歌词显示.md: -------------------------------------------------------------------------------- 1 | # 歌词显示 2 | -------------------------------------------------------------------------------- /项目实战/练习1/2.顶部布局实现.md: -------------------------------------------------------------------------------- 1 | - 2 | 3 | -------------------------------------------------------------------------------- /项目实战/练习1/图片/1560497388337.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/项目实战/练习1/图片/1560497388337.png -------------------------------------------------------------------------------- /项目实战/练习1/图片/1560497920239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/项目实战/练习1/图片/1560497920239.png -------------------------------------------------------------------------------- /项目实战/练习1/图片/1560498969601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/项目实战/练习1/图片/1560498969601.png -------------------------------------------------------------------------------- /项目实战/练习1/图片/1560500922000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/项目实战/练习1/图片/1560500922000.png -------------------------------------------------------------------------------- /项目实战/练习1/图片/1560501245999.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangwangla/AndroidSensor/f2d90c5d32278513f363e7045fdf9e3a2e7c0df5/项目实战/练习1/图片/1560501245999.png --------------------------------------------------------------------------------