├── MyApplication ├── .gitignore ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ └── vcs.xml ├── MyApplication.iml ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── libs │ │ ├── support-v4-19.1.0.jar │ │ └── systembartint-1.0.4.jar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── juve │ │ │ └── myapplication │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── juve │ │ │ └── myapplication │ │ │ ├── MyActivity.java │ │ │ └── MyAdapter.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── action_search.png │ │ ├── drawer_shadow.9.png │ │ ├── ic_action_about.png │ │ ├── ic_drawer.png │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ ├── action_search.png │ │ ├── drawer_shadow.9.png │ │ ├── ic_action_about.png │ │ ├── ic_drawer.png │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_about.png │ │ ├── ic_drawer.png │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_about.png │ │ ├── ic_drawer.png │ │ └── ic_launcher.png │ │ ├── layout │ │ ├── activity_my.xml │ │ └── drawer_list_item.xml │ │ ├── menu │ │ └── my.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── README.md /MyApplication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.gitignore -------------------------------------------------------------------------------- /MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /MyApplication/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/compiler.xml -------------------------------------------------------------------------------- /MyApplication/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /MyApplication/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/encodings.xml -------------------------------------------------------------------------------- /MyApplication/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/gradle.xml -------------------------------------------------------------------------------- /MyApplication/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/misc.xml -------------------------------------------------------------------------------- /MyApplication/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/modules.xml -------------------------------------------------------------------------------- /MyApplication/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /MyApplication/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/.idea/vcs.xml -------------------------------------------------------------------------------- /MyApplication/MyApplication.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/MyApplication.iml -------------------------------------------------------------------------------- /MyApplication/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /MyApplication/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/app.iml -------------------------------------------------------------------------------- /MyApplication/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/build.gradle -------------------------------------------------------------------------------- /MyApplication/app/libs/support-v4-19.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/libs/support-v4-19.1.0.jar -------------------------------------------------------------------------------- /MyApplication/app/libs/systembartint-1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/libs/systembartint-1.0.4.jar -------------------------------------------------------------------------------- /MyApplication/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/proguard-rules.pro -------------------------------------------------------------------------------- /MyApplication/app/src/androidTest/java/com/example/juve/myapplication/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/androidTest/java/com/example/juve/myapplication/ApplicationTest.java -------------------------------------------------------------------------------- /MyApplication/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/java/com/example/juve/myapplication/MyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/java/com/example/juve/myapplication/MyActivity.java -------------------------------------------------------------------------------- /MyApplication/app/src/main/java/com/example/juve/myapplication/MyAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/java/com/example/juve/myapplication/MyAdapter.java -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-hdpi/action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-hdpi/action_search.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-hdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-hdpi/ic_action_about.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-mdpi/action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-mdpi/action_search.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-mdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-mdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-mdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-mdpi/ic_action_about.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-xhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-xhdpi/ic_action_about.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-xxhdpi/ic_action_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-xxhdpi/ic_action_about.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-xxhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-xxhdpi/ic_drawer.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/layout/activity_my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/layout/activity_my.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/layout/drawer_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/layout/drawer_list_item.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/menu/my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/menu/my.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /MyApplication/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /MyApplication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/build.gradle -------------------------------------------------------------------------------- /MyApplication/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/gradle.properties -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /MyApplication/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /MyApplication/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/gradlew -------------------------------------------------------------------------------- /MyApplication/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/MyApplication/gradlew.bat -------------------------------------------------------------------------------- /MyApplication/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juvevood/DrawerLayout-SwipeRefreshLayout-Systembartint/HEAD/README.md --------------------------------------------------------------------------------