├── AnswerSystem ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ ├── gradle.xml │ └── misc.xml ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ ├── assets │ │ │ │ └── question.db │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── lgl │ │ │ │ │ └── answersystem │ │ │ │ │ ├── Question.java │ │ │ │ │ └── DBService.java │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── lgl │ │ │ │ └── answersystem │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── lgl │ │ │ └── answersystem │ │ │ └── ApplicationTest.java │ ├── build.gradle │ └── proguard-rules.pro ├── settings.gradle ├── .gitignore ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── README.md ├── build.gradle ├── gradle.properties └── gradlew.bat ├── SqliteSample ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.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 │ │ │ │ └── layout │ │ │ │ │ └── activity_main.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── liuguilin │ │ │ │ │ └── sqlitesample │ │ │ │ │ ├── entity │ │ │ │ │ └── Constans.java │ │ │ │ │ ├── manager │ │ │ │ │ └── DBManager.java │ │ │ │ │ └── db │ │ │ │ │ └── DBHelper.java │ │ │ └── AndroidManifest.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── liuguilin │ │ │ └── sqlitesample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── dictionaries │ │ └── Administrator.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ └── compiler.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle ├── gradle.properties └── gradlew.bat ├── TallyBook ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── add_data.png │ │ │ │ │ ├── er_code.jpg │ │ │ │ │ ├── no_data.jpg │ │ │ │ │ ├── liuguilin.JPG │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── launcher_icon.jpg │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── 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-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── menu │ │ │ │ │ └── menu.xml │ │ │ │ ├── drawable │ │ │ │ │ └── button_bg.xml │ │ │ │ └── layout │ │ │ │ │ ├── list_setting_item.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── activity_setting.xml │ │ │ │ │ ├── list_item.xml │ │ │ │ │ └── dialog_item.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── liuguilin │ │ │ │ │ └── tallybook │ │ │ │ │ ├── entity │ │ │ │ │ └── CostModel.java │ │ │ │ │ ├── ui │ │ │ │ │ └── SettingActivity.java │ │ │ │ │ ├── adapter │ │ │ │ │ ├── ListAdapter.java │ │ │ │ │ └── CostAdapter.java │ │ │ │ │ └── db │ │ │ │ │ └── DBHelper.java │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── liuguilin │ │ │ │ └── tallybook │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── liuguilin │ │ │ └── tallybook │ │ │ └── ExampleInstrumentedTest.java │ ├── build.gradle │ └── proguard-rules.pro ├── settings.gradle ├── img │ └── 预览.gif ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ ├── compiler.xml │ └── misc.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── README.md ├── build.gradle ├── gradle.properties └── gradlew.bat ├── VolleyProject ├── .idea │ ├── .name │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── inspectionProfiles │ │ ├── profiles_settings.xml │ │ └── Project_Default.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── compiler.xml │ ├── gradle.xml │ └── misc.xml ├── app │ ├── .gitignore │ ├── libs │ │ └── volley.jar │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── baoyu.png │ │ │ │ │ ├── other.png │ │ │ │ │ ├── qing.png │ │ │ │ │ ├── duoyun.png │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ └── layout │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ ├── activity_qq.xml │ │ │ │ │ └── activity_call.xml │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── lgl │ │ │ │ └── volleyproject │ │ │ │ └── MainActivity.java │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── lgl │ │ │ │ └── volleyproject │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── lgl │ │ │ └── volleyproject │ │ │ └── ApplicationTest.java │ ├── proguard-rules.pro │ └── build.gradle ├── settings.gradle ├── .gitignore ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── README.md ├── build.gradle ├── gradle.properties └── gradlew.bat ├── CustomViewPager ├── app │ ├── .gitignore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── drawable │ │ │ │ │ ├── img1.png │ │ │ │ │ ├── img2.png │ │ │ │ │ ├── img3.png │ │ │ │ │ ├── dot_point_normel.xml │ │ │ │ │ └── dot_point_selector.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 │ │ │ │ └── layout │ │ │ │ │ └── activity_main.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── liuguilin │ │ │ │ │ └── customviewpager │ │ │ │ │ ├── entity │ │ │ │ │ └── Constans.java │ │ │ │ │ └── MainActivity.java │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── liuguilin │ │ │ │ └── customviewpager │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── liuguilin │ │ │ └── customviewpager │ │ │ └── ExampleInstrumentedTest.java │ ├── proguard-rules.pro │ └── build.gradle ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ ├── compiler.xml │ └── misc.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle ├── gradle.properties └── gradlew.bat ├── SimpleWeathers ├── app │ ├── .gitignore │ ├── .DS_Store │ ├── src │ │ ├── .DS_Store │ │ ├── main │ │ │ ├── .DS_Store │ │ │ ├── java │ │ │ │ ├── .DS_Store │ │ │ │ └── com │ │ │ │ │ ├── .DS_Store │ │ │ │ │ └── liuguilin │ │ │ │ │ ├── .DS_Store │ │ │ │ │ └── simpleweather │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── entity │ │ │ │ │ └── Constans.java │ │ │ │ │ ├── impl │ │ │ │ │ └── WeatherImpl.java │ │ │ │ │ ├── utils │ │ │ │ │ └── SharePreUtils.java │ │ │ │ │ ├── ui │ │ │ │ │ ├── BaseActivity.java │ │ │ │ │ ├── AboutActivity.java │ │ │ │ │ ├── BackActivity.java │ │ │ │ │ └── SettingActivity.java │ │ │ │ │ └── adapter │ │ │ │ │ └── ListAdapter.java │ │ │ ├── res │ │ │ │ ├── .DS_Store │ │ │ │ ├── drawable │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── er_code.jpg │ │ │ │ │ ├── button_bg.xml │ │ │ │ │ └── edit_bg.xml │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── .DS_Store │ │ │ │ │ ├── liuguilin.JPG │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_refresh_white.png │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── weather_icon_white_01.png │ │ │ │ │ ├── weather_icon_white_02.png │ │ │ │ │ ├── weather_icon_white_03.png │ │ │ │ │ ├── weather_icon_white_04.png │ │ │ │ │ ├── weather_icon_white_05.png │ │ │ │ │ ├── weather_icon_white_06.png │ │ │ │ │ ├── weather_icon_white_07.png │ │ │ │ │ ├── weather_icon_white_08.png │ │ │ │ │ ├── weather_icon_white_09.png │ │ │ │ │ ├── weather_icon_white_10.png │ │ │ │ │ ├── weather_icon_white_11.png │ │ │ │ │ ├── weather_icon_white_12.png │ │ │ │ │ ├── weather_icon_white_13.png │ │ │ │ │ ├── weather_icon_white_14.png │ │ │ │ │ ├── weather_icon_white_15.png │ │ │ │ │ ├── weather_icon_white_16.png │ │ │ │ │ ├── weather_icon_white_17.png │ │ │ │ │ ├── weather_icon_white_18.png │ │ │ │ │ ├── weather_icon_white_19.png │ │ │ │ │ ├── weather_icon_white_20.png │ │ │ │ │ ├── weather_icon_white_21.png │ │ │ │ │ ├── weather_icon_white_22.png │ │ │ │ │ ├── weather_icon_white_23.png │ │ │ │ │ ├── weather_icon_white_24.png │ │ │ │ │ └── weather_icon_white_25.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-zh │ │ │ │ │ └── strings.xml │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── menu │ │ │ │ │ └── main_menu.xml │ │ │ │ ├── anim │ │ │ │ │ └── iv_rotating.xml │ │ │ │ ├── values-w820dp │ │ │ │ │ └── dimens.xml │ │ │ │ └── layout │ │ │ │ │ ├── activity_setting.xml │ │ │ │ │ ├── list_item.xml │ │ │ │ │ ├── activity_splash.xml │ │ │ │ │ ├── activity_back.xml │ │ │ │ │ └── activity_about.xml │ │ │ ├── jniLibs │ │ │ │ ├── x86 │ │ │ │ │ └── liblocSDK7.so │ │ │ │ ├── armeabi │ │ │ │ │ └── liblocSDK7.so │ │ │ │ ├── x86_64 │ │ │ │ │ └── liblocSDK7.so │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── liblocSDK7.so │ │ │ │ └── armeabi-v7a │ │ │ │ │ └── liblocSDK7.so │ │ │ └── AndroidManifest.xml │ │ ├── test │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── liuguilin │ │ │ │ └── simpleweather │ │ │ │ └── ExampleUnitTest.java │ │ └── androidTest │ │ │ └── java │ │ │ └── com │ │ │ └── liuguilin │ │ │ └── simpleweather │ │ │ └── ExampleInstrumentedTest.java │ ├── libs │ │ └── BaiduLBS_Android.jar │ ├── proguard-rules.pro │ └── build.gradle ├── .DS_Store ├── img │ └── 预览.png ├── ppt │ └── 简单天气.pptx ├── xmind │ └── 简单天气.xmind ├── README.md └── build.gradle ├── UniversalAdapter ├── app │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ └── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── list_item.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── liuguilin │ │ │ │ └── universaladapter │ │ │ │ ├── model │ │ │ │ └── DataBean.java │ │ │ │ ├── adapter │ │ │ │ ├── MyAdapter.java │ │ │ │ └── UniversalAdapter.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── holder │ │ │ │ └── ViewHolder.java │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ └── proguard-rules.pro ├── settings.gradle ├── .idea │ ├── copyright │ │ └── profiles_settings.xml │ ├── dictionaries │ │ └── Administrator.xml │ ├── encodings.xml │ ├── modules.xml │ ├── runConfigurations.xml │ ├── gradle.xml │ └── compiler.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── .gitignore ├── build.gradle ├── gradle.properties └── gradlew.bat └── README.md /AnswerSystem/.idea/.name: -------------------------------------------------------------------------------- 1 | AnswerSystem -------------------------------------------------------------------------------- /AnswerSystem/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SqliteSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /TallyBook/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /VolleyProject/.idea/.name: -------------------------------------------------------------------------------- 1 | VolleyProject -------------------------------------------------------------------------------- /CustomViewPager/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /SimpleWeathers/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /UniversalAdapter/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /VolleyProject/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AnswerSystem/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /SqliteSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TallyBook/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /VolleyProject/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CustomViewPager/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /UniversalAdapter/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /TallyBook/img/预览.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/img/预览.gif -------------------------------------------------------------------------------- /SimpleWeathers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/.DS_Store -------------------------------------------------------------------------------- /SimpleWeathers/img/预览.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/img/预览.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 记账本 3 | 4 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 答题系统 3 | 4 | -------------------------------------------------------------------------------- /SimpleWeathers/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/.DS_Store -------------------------------------------------------------------------------- /SimpleWeathers/ppt/简单天气.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/ppt/简单天气.pptx -------------------------------------------------------------------------------- /AnswerSystem/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SqliteSample/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /TallyBook/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /VolleyProject/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /CustomViewPager/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/.DS_Store -------------------------------------------------------------------------------- /SimpleWeathers/xmind/简单天气.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/xmind/简单天气.xmind -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SqliteSample 3 | 4 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /VolleyProject/app/libs/volley.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/libs/volley.jar -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | VolleyProject 3 | 4 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CustomViewPager 3 | 4 | -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | UniversalAdapter 3 | 4 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/.DS_Store -------------------------------------------------------------------------------- /AnswerSystem/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /SqliteSample/.idea/dictionaries/Administrator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/dictionaries/Administrator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /VolleyProject/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/java/.DS_Store -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/.DS_Store -------------------------------------------------------------------------------- /TallyBook/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/assets/question.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/app/src/main/assets/question.db -------------------------------------------------------------------------------- /SimpleWeathers/app/libs/BaiduLBS_Android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/libs/BaiduLBS_Android.jar -------------------------------------------------------------------------------- /AnswerSystem/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/java/com/.DS_Store -------------------------------------------------------------------------------- /SqliteSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /VolleyProject/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/drawable/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/drawable/img1.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/drawable/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/drawable/img2.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/drawable/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/drawable/img3.png -------------------------------------------------------------------------------- /CustomViewPager/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/drawable/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/drawable/.DS_Store -------------------------------------------------------------------------------- /UniversalAdapter/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/jniLibs/x86/liblocSDK7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/jniLibs/x86/liblocSDK7.so -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/drawable/er_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/drawable/er_code.jpg -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/add_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/add_data.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/er_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/er_code.jpg -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/no_data.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/no_data.jpg -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xhdpi/baoyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xhdpi/baoyu.png -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xhdpi/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xhdpi/other.png -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xhdpi/qing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xhdpi/qing.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xxhdpi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xxhdpi/.DS_Store -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/liuguilin.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/liuguilin.JPG -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xhdpi/duoyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xhdpi/duoyun.png -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/com/liuguilin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/java/com/liuguilin/.DS_Store -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/jniLibs/armeabi/liblocSDK7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/jniLibs/armeabi/liblocSDK7.so -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/jniLibs/x86_64/liblocSDK7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/jniLibs/x86_64/liblocSDK7.so -------------------------------------------------------------------------------- /SqliteSample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TallyBook/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/launcher_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/launcher_icon.jpg -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/AnswerSystem/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomViewPager/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/jniLibs/arm64-v8a/liblocSDK7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/jniLibs/arm64-v8a/liblocSDK7.so -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xxhdpi/liuguilin.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xxhdpi/liuguilin.JPG -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/jniLibs/armeabi-v7a/liblocSDK7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/jniLibs/armeabi-v7a/liblocSDK7.so -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/TallyBook/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/VolleyProject/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xxhdpi/ic_refresh_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xxhdpi/ic_refresh_white.png -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SqliteSample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AnswerSystem/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/CustomViewPager/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/com/liuguilin/simpleweather/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/java/com/liuguilin/simpleweather/.DS_Store -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_01.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_02.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_03.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_04.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_05.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_06.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_07.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_08.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_09.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_10.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_11.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_12.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_13.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_14.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_15.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_16.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_17.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_18.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_19.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_20.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_21.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_22.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_23.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_24.png -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/SimpleWeathers/app/src/main/res/mipmap-xhdpi/weather_icon_white_25.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuGuiLinAndroid/Example-Source-Code/HEAD/UniversalAdapter/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /VolleyProject/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SimpleWeathers/README.md: -------------------------------------------------------------------------------- 1 | # SimpleWeather 2 | 简单天气 | MPAndroidChart + Retrofit2.0 + Gson 3 | 4 | ![预览](https://github.com/LiuGuiLinAndroid/SimpleProject/blob/master/SimpleWeathers/img/%E9%A2%84%E8%A7%88.png?raw=true) 5 | -------------------------------------------------------------------------------- /SqliteSample/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/drawable/button_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/drawable/edit_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 简单天气 3 | 设置 4 | 意见反馈 5 | 关于 6 | 7 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SimpleWeather 3 | 设置 4 | 意见反馈 5 | 关于 6 | 7 | -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /AnswerSystem/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 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-2.10-all.zip 7 | -------------------------------------------------------------------------------- /SqliteSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 28 21:19:32 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /TallyBook/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Mar 26 17:39:02 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /CustomViewPager/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Mar 27 19:44:21 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /UniversalAdapter/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Apr 30 19:04:26 CST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /VolleyProject/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 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-2.10-all.zip 7 | -------------------------------------------------------------------------------- /VolleyProject/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /VolleyProject/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/drawable/dot_point_normel.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/drawable/dot_point_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /TallyBook/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AnswerSystem/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/anim/iv_rotating.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /SqliteSample/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /VolleyProject/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CustomViewPager/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/java/com/liuguilin/customviewpager/entity/Constans.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.customviewpager.entity; 2 | 3 | /* 4 | * 项目名: CustomViewPager 5 | * 包名: com.liuguilin.customviewpager.entity 6 | * 文件名: Constans 7 | * 创建者: 刘某人程序员 8 | * 创建时间: 2017/3/27 23:40 9 | * 描述: 常量 10 | */ 11 | public class Constans { 12 | 13 | //屏幕宽度 14 | public static int WINDOW_WIDTH; 15 | } 16 | -------------------------------------------------------------------------------- /TallyBook/README.md: -------------------------------------------------------------------------------- 1 | # TallyBook 2 | --- 3 | 4 | >给女朋友写的一个简单的sql的记账本 5 | 6 | ![图片](https://github.com/LiuGuiLinAndroid/SimpleProject/blob/master/TallyBook/img/%E9%A2%84%E8%A7%88.gif) 7 | 8 | ####QQ群:555974449 9 | 10 | ###[点击关注我的微博](http://weibo.com/Glorystys) 11 | 12 | ####博客地址:http://blog.csdn.net/qq_26787115 13 | 14 | --- 15 | 16 | ###我的公众号,期待你的关注 17 | 18 | ![weixin](http://img.blog.csdn.net/20160108203741937) 19 | 20 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | @color/color_main 4 | @color/color_main 5 | @color/color_main 6 | 7 | #2AA0E7 8 | @android:color/white 9 | 10 | 11 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/test/java/com/lgl/answersystem/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.lgl.answersystem; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /VolleyProject/app/src/test/java/com/lgl/volleyproject/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.lgl.volleyproject; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /SqliteSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/androidTest/java/com/lgl/answersystem/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.lgl.answersystem; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /VolleyProject/app/src/androidTest/java/com/lgl/volleyproject/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.lgl.volleyproject; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/layout/activity_setting.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /AnswerSystem/README.md: -------------------------------------------------------------------------------- 1 | # AnswerSystem 2 | 3 | >Android-自己设计数据库的答题系统 4 | 5 | >博客地址:http://blog.csdn.net/qq_26787115/article/details/51586096 6 | 7 | 8 | 9 | ![这里写图片描述](http://img.blog.csdn.net/20160604233854533) 10 | 11 | 12 | ####QQ邮箱:748778890@qq.com 13 | ####Google邮箱:liuguilin74@gmail.com 14 | ####博客地址:http://blog.csdn.net/qq_26787115 15 | 16 | --- 17 | ###我的公众号,期待你的关注 18 | ![weixin](http://img.blog.csdn.net/20160108203741937) 19 | ###[点击关注我的微博](http://weibo.com/Glorystys) 20 | 21 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | 12sp 7 | 18sp 8 | 25sp 9 | 35sp 10 | 11 | 12 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/com/liuguilin/simpleweather/entity/Constans.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.simpleweather.entity; 2 | 3 | /* 4 | *项目名: SimpleWeather 5 | *包名: com.liuguilin.simpleweather.entity 6 | *文件名: Constans 7 | *创建者: LGL 8 | *创建时间:2016/11/2422:36 9 | *描述: 常量类 10 | */ 11 | public class Constans { 12 | 13 | //Tag 14 | public static final String TAG = "SimpleWeather"; 15 | 16 | public static final String WEATHER_KEY = "4ea58de8a7573377cec0046f5e2469d5"; 17 | 18 | 19 | } 20 | -------------------------------------------------------------------------------- /VolleyProject/README.md: -------------------------------------------------------------------------------- 1 | # VolleyProject 2 | 3 | >Volley解析的项目实战 4 | 5 | ![这里写图片描述](http://img.blog.csdn.net/20160605103528333) 6 | 7 | 8 | 视频地址:http://edu.csdn.net/course/detail/2509 9 | 10 | 参考博文:http://blog.csdn.net/qq_26787115/article/details/51366708 11 | 12 | 13 | ####QQ邮箱:748778890@qq.com 14 | ####Google邮箱:liuguilin74@gmail.com 15 | ####博客地址:http://blog.csdn.net/qq_26787115 16 | 17 | --- 18 | ###我的公众号,期待你的关注 19 | ![weixin](http://img.blog.csdn.net/20160108203741937) 20 | ###[点击关注我的微博](http://weibo.com/Glorystys) 21 | -------------------------------------------------------------------------------- /TallyBook/app/src/test/java/com/liuguilin/tallybook/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.tallybook; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /SqliteSample/app/src/test/java/com/liuguilin/sqlitesample/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.sqlitesample; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/test/java/com/liuguilin/simpleweather/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.simpleweather; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /CustomViewPager/app/src/test/java/com/liuguilin/customviewpager/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.customviewpager; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /SqliteSample/app/src/main/java/com/liuguilin/sqlitesample/entity/Constans.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.sqlitesample.entity; 2 | 3 | /* 4 | * 项目名: SqliteSample 5 | * 包名: com.liuguilin.sqlitesample.entity 6 | * 文件名: Constans 7 | * 创建者: 刘某人程序员 8 | * 创建时间: 2017/3/30 21:11 9 | * 描述: TODO 10 | */ 11 | public class Constans { 12 | 13 | //数据库的名称 14 | public static final String DB_NAME = "info.db"; 15 | //数据库的版本号 16 | public static final int DB_VERSION = 1; 17 | //表名 18 | public static final String TAB_NAME = "person"; 19 | 20 | } 21 | -------------------------------------------------------------------------------- /TallyBook/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /AnswerSystem/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /CustomViewPager/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /SqliteSample/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /UniversalAdapter/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /VolleyProject/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /TallyBook/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /AnswerSystem/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /CustomViewPager/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /SqliteSample/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /VolleyProject/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/java/com/lgl/answersystem/Question.java: -------------------------------------------------------------------------------- 1 | package com.lgl.answersystem; 2 | 3 | /** 4 | * 保存数据库数据 5 | * Created by LGL on 2016/6/4. 6 | */ 7 | public class Question { 8 | 9 | /** 10 | * 对应的就是Filter1-7 还有一个选中答案 11 | */ 12 | 13 | //编号 14 | public int ID; 15 | //问题 16 | public String question; 17 | //四个选项 18 | public String answerA; 19 | public String answerB; 20 | public String answerC; 21 | public String answerD; 22 | //答案 23 | public int answer; 24 | //详情 25 | public String explaination; 26 | 27 | //用户选中的答案 28 | public int selectedAnswer; 29 | 30 | } 31 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/drawable/button_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /SimpleWeathers/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.2' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { url "https://jitpack.io" } 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 16 | 17 | -------------------------------------------------------------------------------- /TallyBook/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/res/layout/list_setting_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 17 | 18 | -------------------------------------------------------------------------------- /SqliteSample/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 19 | -------------------------------------------------------------------------------- /CustomViewPager/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /UniversalAdapter/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 25 5 | buildToolsVersion "25.0.2" 6 | defaultConfig { 7 | applicationId "com.liuguilin.universaladapter" 8 | minSdkVersion 15 9 | targetSdkVersion 25 10 | versionCode 1 11 | versionName "1.0" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | compile fileTree(dir: 'libs', include: ['*.jar']) 23 | compile 'com.android.support:appcompat-v7:25.2.0' 24 | } 25 | -------------------------------------------------------------------------------- /AnswerSystem/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.3" 6 | 7 | defaultConfig { 8 | applicationId "com.lgl.answersystem" 9 | minSdkVersion 15 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:appcompat-v7:23.3.0' 26 | } 27 | -------------------------------------------------------------------------------- /AnswerSystem/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\AndroidDelepoer\androidSdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /SimpleWeathers/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\AndroidDelepoer\androidSdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /VolleyProject/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in E:\AndroidDelepoer\androidSdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /AnswerSystem/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/java/com/liuguilin/universaladapter/model/DataBean.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.universaladapter.model; 2 | 3 | /* 4 | * 项目名: UniversalAdapter 5 | * 包名: com.liuguilin.universaladapter.model 6 | * 文件名: DataBean 7 | * 创建者: 刘某人程序员 8 | * 创建时间: 2017/5/1 18:30 9 | * 描述: TODO 10 | */ 11 | public class DataBean { 12 | 13 | private String title; 14 | private String content; 15 | 16 | public String getTitle() { 17 | return title; 18 | } 19 | 20 | public void setTitle(String title) { 21 | this.title = title; 22 | } 23 | 24 | public String getContent() { 25 | return content; 26 | } 27 | 28 | public void setContent(String content) { 29 | this.content = content; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /AnswerSystem/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /TallyBook/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /CustomViewPager/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /VolleyProject/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /VolleyProject/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "23.0.3" 6 | 7 | defaultConfig { 8 | applicationId "com.lgl.volleyproject" 9 | minSdkVersion 15 10 | targetSdkVersion 23 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(include: ['*.jar'], dir: 'libs') 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:appcompat-v7:23.3.0' 26 | compile files('libs/volley.jar') 27 | } 28 | -------------------------------------------------------------------------------- /TallyBook/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /SqliteSample/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /SqliteSample/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /CustomViewPager/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /UniversalAdapter/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | -------------------------------------------------------------------------------- /UniversalAdapter/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/com/liuguilin/simpleweather/impl/WeatherImpl.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.simpleweather.impl; 2 | 3 | import com.liuguilin.simpleweather.data.WeatherDataBean; 4 | 5 | import retrofit2.Call; 6 | import retrofit2.http.GET; 7 | import retrofit2.http.Query; 8 | 9 | /* 10 | *项目名: SimpleWeather 11 | *包名: com.liuguilin.simpleweather.impl 12 | *文件名: WeatherImpl 13 | *创建者: LGL 14 | *创建时间:2016/11/2423:11 15 | *描述: 天气接口 16 | */ 17 | public interface WeatherImpl { 18 | 19 | //http://op.juhe.cn/ baseurl 20 | //onebox/weather/query? get地址 21 | // 22 | // cityname=深圳&key=4ea58de8a7573377cec0046f5e2469d5 23 | //ciryname key 24 | 25 | @GET("onebox/weather/query?") 26 | Call getWeather(@Query("cityname") String cityname, @Query("key") String key); 27 | } 28 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /SqliteSample/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 25 5 | buildToolsVersion "25.0.2" 6 | defaultConfig { 7 | applicationId "com.liuguilin.sqlitesample" 8 | minSdkVersion 15 9 | targetSdkVersion 25 10 | versionCode 1 11 | versionName "1.0" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | compile 'com.android.support:appcompat-v7:25.2.0' 25 | testCompile 'junit:junit:4.12' 26 | } 27 | -------------------------------------------------------------------------------- /SqliteSample/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /UniversalAdapter/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /TallyBook/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 25 5 | buildToolsVersion "25.0.2" 6 | defaultConfig { 7 | applicationId "com.liuguilin.tallybook" 8 | minSdkVersion 15 9 | targetSdkVersion 24 10 | versionCode 1 11 | versionName "1.0" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | compile fileTree(include: ['*.jar'], dir: 'libs') 23 | compile 'com.android.support:appcompat-v7:25.2.0' 24 | testCompile 'junit:junit:4.12' 25 | compile 'com.android.support:design:25.2.0' 26 | //CircleImageview 27 | compile 'de.hdodenhof:circleimageview:2.1.0' 28 | } 29 | -------------------------------------------------------------------------------- /AnswerSystem/gradle.properties: -------------------------------------------------------------------------------- 1 | ## Project-wide Gradle settings. 2 | # 3 | # For more details on how to configure your build environment visit 4 | # http://www.gradle.org/docs/current/userguide/build_environment.html 5 | # 6 | # Specifies the JVM arguments used for the daemon process. 7 | # The setting is particularly useful for tweaking memory settings. 8 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 9 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 10 | # 11 | # When configured, Gradle will run in incubating parallel mode. 12 | # This option should only be used with decoupled projects. More details, visit 13 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 14 | # org.gradle.parallel=true 15 | #Sat Jun 04 19:12:24 CST 2016 16 | systemProp.http.proxyHost=mirrors.opencas.cn 17 | systemProp.http.proxyPort=80 18 | -------------------------------------------------------------------------------- /VolleyProject/gradle.properties: -------------------------------------------------------------------------------- 1 | ## Project-wide Gradle settings. 2 | # 3 | # For more details on how to configure your build environment visit 4 | # http://www.gradle.org/docs/current/userguide/build_environment.html 5 | # 6 | # Specifies the JVM arguments used for the daemon process. 7 | # The setting is particularly useful for tweaking memory settings. 8 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 9 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 10 | # 11 | # When configured, Gradle will run in incubating parallel mode. 12 | # This option should only be used with decoupled projects. More details, visit 13 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 14 | # org.gradle.parallel=true 15 | #Sat Jun 04 10:55:26 CST 2016 16 | systemProp.http.proxyHost=mirrors.opencas.cn 17 | systemProp.http.proxyPort=80 18 | -------------------------------------------------------------------------------- /TallyBook/app/src/androidTest/java/com/liuguilin/tallybook/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.tallybook; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.liuguilin.tallybook", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /AnswerSystem/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 23 | 24 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/java/com/liuguilin/tallybook/entity/CostModel.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.tallybook.entity; 2 | 3 | /* 4 | * 项目名: TallyBook 5 | * 包名: com.liuguilin.tallybook.entity 6 | * 文件名: CostModel 7 | * 创建者: LiuGuiLinAndroid 8 | * 创建时间: 2017/3/26 17:50 9 | * 描述: 数据模型 10 | */ 11 | public class CostModel { 12 | 13 | private String title; 14 | private String date; 15 | private String money; 16 | 17 | public String getTitle() { 18 | return title; 19 | } 20 | 21 | public void setTitle(String title) { 22 | this.title = title; 23 | } 24 | 25 | public String getDate() { 26 | return date; 27 | } 28 | 29 | public void setDate(String date) { 30 | this.date = date; 31 | } 32 | 33 | public String getMoney() { 34 | return money; 35 | } 36 | 37 | public void setMoney(String money) { 38 | this.money = money; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /VolleyProject/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 23 | 24 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/androidTest/java/com/liuguilin/simpleweather/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.simpleweather; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.liuguilin.simpleweather", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /CustomViewPager/app/src/androidTest/java/com/liuguilin/customviewpager/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.customviewpager; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.liuguilin.customviewpager", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/java/com/liuguilin/simpleweather/utils/SharePreUtils.java: -------------------------------------------------------------------------------- 1 | package com.liuguilin.simpleweather.utils; 2 | 3 | import android.content.Context; 4 | import android.content.SharedPreferences; 5 | 6 | /* 7 | *项目名: SimpleWeather 8 | *包名: com.liuguilin.simpleweather.utils 9 | *文件名: SharePreUtils 10 | *创建者: LGL 11 | *创建时间:2016/11/2423:58 12 | *描述: SharedPreferences封装 13 | */ 14 | public class SharePreUtils { 15 | 16 | public static final String SHARE_NAME = "config"; 17 | 18 | public static void putString(Context mContext, String key, String values) { 19 | SharedPreferences sp = mContext.getSharedPreferences(SHARE_NAME, Context.MODE_PRIVATE); 20 | sp.edit().putString(key, values).commit(); 21 | } 22 | 23 | public static String getString(Context mContext, String key, String values) { 24 | SharedPreferences sp = mContext.getSharedPreferences(SHARE_NAME, Context.MODE_PRIVATE); 25 | return sp.getString(key, values); 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /TallyBook/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /SimpleWeathers/app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 15 | 16 | 24 | 25 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /VolleyProject/app/src/main/res/layout/activity_qq.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 |