├── .gitignore ├── README.md ├── proguard-rules.pro ├── src ├── androidTest │ └── java │ │ └── com │ │ └── likh │ │ └── supercustomtoast │ │ └── ApplicationTest.java └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── likh │ │ └── supercustomtoast │ │ ├── MainActivity.java │ │ └── SuperCustomToast.java │ └── res │ ├── drawable │ └── camera_middle_frame_bg_theme_light.xml │ ├── layout │ ├── activity_main.xml │ └── super_toast_theme_light.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ ├── bg.png │ ├── ic_launcher.png │ ├── logo1.png │ └── waring.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── supercustomtoast.iml /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/README.md -------------------------------------------------------------------------------- /proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/proguard-rules.pro -------------------------------------------------------------------------------- /src/androidTest/java/com/likh/supercustomtoast/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/androidTest/java/com/likh/supercustomtoast/ApplicationTest.java -------------------------------------------------------------------------------- /src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /src/main/java/com/likh/supercustomtoast/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/java/com/likh/supercustomtoast/MainActivity.java -------------------------------------------------------------------------------- /src/main/java/com/likh/supercustomtoast/SuperCustomToast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/java/com/likh/supercustomtoast/SuperCustomToast.java -------------------------------------------------------------------------------- /src/main/res/drawable/camera_middle_frame_bg_theme_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/drawable/camera_middle_frame_bg_theme_light.xml -------------------------------------------------------------------------------- /src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /src/main/res/layout/super_toast_theme_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/layout/super_toast_theme_light.xml -------------------------------------------------------------------------------- /src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /src/main/res/mipmap-hdpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-hdpi/bg.png -------------------------------------------------------------------------------- /src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/mipmap-hdpi/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-hdpi/logo1.png -------------------------------------------------------------------------------- /src/main/res/mipmap-hdpi/waring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-hdpi/waring.png -------------------------------------------------------------------------------- /src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /supercustomtoast.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrLiKH/supercustomtoast/HEAD/supercustomtoast.iml --------------------------------------------------------------------------------