├── .gitignore ├── AndroidManifest.xml ├── README.md ├── libs └── android-support-v4.jar ├── res ├── drawable-mdpi │ └── .gitkeep └── values │ └── .gitkeep └── src └── com └── codepath └── libraries └── androidviewhelpers ├── SimpleAlertDialog.java ├── SimpleDialogFragment.java └── SimpleProgressDialog.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/README.md -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-mdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/com/codepath/libraries/androidviewhelpers/SimpleAlertDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/src/com/codepath/libraries/androidviewhelpers/SimpleAlertDialog.java -------------------------------------------------------------------------------- /src/com/codepath/libraries/androidviewhelpers/SimpleDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/src/com/codepath/libraries/androidviewhelpers/SimpleDialogFragment.java -------------------------------------------------------------------------------- /src/com/codepath/libraries/androidviewhelpers/SimpleProgressDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepath/android-view-helpers/HEAD/src/com/codepath/libraries/androidviewhelpers/SimpleProgressDialog.java --------------------------------------------------------------------------------