├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── README.md ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── activity_example1.xml │ ├── activity_example2.xml │ ├── activity_main.xml │ ├── activity_simple.xml │ ├── item_example1.xml │ ├── load_empty.xml │ ├── load_error.xml │ └── load_ing.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── shizhefei ├── test ├── Example1Activity.java ├── Example2Activity.java ├── MainActivity.java ├── SimpleActivity.java └── load │ └── LoadViewHelper.java └── view └── vary ├── IVaryViewHelper.java ├── VaryViewHelper.java └── VaryViewHelperX.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /gen/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/README.md -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_example1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/activity_example1.xml -------------------------------------------------------------------------------- /res/layout/activity_example2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/activity_example2.xml -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/activity_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/activity_simple.xml -------------------------------------------------------------------------------- /res/layout/item_example1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/item_example1.xml -------------------------------------------------------------------------------- /res/layout/load_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/load_empty.xml -------------------------------------------------------------------------------- /res/layout/load_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/load_error.xml -------------------------------------------------------------------------------- /res/layout/load_ing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/layout/load_ing.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/shizhefei/test/Example1Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/test/Example1Activity.java -------------------------------------------------------------------------------- /src/com/shizhefei/test/Example2Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/test/Example2Activity.java -------------------------------------------------------------------------------- /src/com/shizhefei/test/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/test/MainActivity.java -------------------------------------------------------------------------------- /src/com/shizhefei/test/SimpleActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/test/SimpleActivity.java -------------------------------------------------------------------------------- /src/com/shizhefei/test/load/LoadViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/test/load/LoadViewHelper.java -------------------------------------------------------------------------------- /src/com/shizhefei/view/vary/IVaryViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/view/vary/IVaryViewHelper.java -------------------------------------------------------------------------------- /src/com/shizhefei/view/vary/VaryViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/view/vary/VaryViewHelper.java -------------------------------------------------------------------------------- /src/com/shizhefei/view/vary/VaryViewHelperX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuckyJayce/LoadViewHelper/HEAD/src/com/shizhefei/view/vary/VaryViewHelperX.java --------------------------------------------------------------------------------