├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── demo.apk ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── saulmm │ │ └── myapplication │ │ ├── AvatarImageBehavior.java │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ ├── ic_account.png │ ├── ic_heart_outline_white_24dp.png │ ├── ic_menu_add.png │ ├── ic_menu_delete.png │ ├── ic_menu_edit_annonce.png │ └── ic_phone.png │ ├── drawable-mdpi │ ├── ic_account.png │ ├── ic_heart_outline_white_24dp.png │ └── ic_phone.png │ ├── drawable-nodpi │ ├── quila.png │ ├── quila2.png │ └── sea.png │ ├── drawable-xhdpi │ ├── ic_account.png │ ├── ic_heart_outline_white_24dp.png │ └── ic_phone.png │ ├── drawable-xxhdpi │ ├── ic_account.png │ ├── ic_heart_outline_white_24dp.png │ └── ic_phone.png │ ├── drawable-xxxhdpi │ ├── ic_account.png │ └── ic_phone.png │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ └── example_resources.xml ├── art └── hammerheadLMY48Isaulmm08162015053205.gif ├── gradle.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/demo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/demo.apk -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/saulmm/myapplication/AvatarImageBehavior.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/java/saulmm/myapplication/AvatarImageBehavior.java -------------------------------------------------------------------------------- /app/src/main/java/saulmm/myapplication/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/java/saulmm/myapplication/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-hdpi/ic_account.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_heart_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-hdpi/ic_heart_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-hdpi/ic_menu_add.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-hdpi/ic_menu_delete.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_menu_edit_annonce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-hdpi/ic_menu_edit_annonce.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-hdpi/ic_phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-mdpi/ic_account.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_heart_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-mdpi/ic_heart_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-mdpi/ic_phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/quila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-nodpi/quila.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/quila2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-nodpi/quila2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/sea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-nodpi/sea.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xhdpi/ic_account.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_heart_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xhdpi/ic_heart_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xhdpi/ic_phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xxhdpi/ic_account.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_heart_outline_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xxhdpi/ic_heart_outline_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xxhdpi/ic_phone.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xxxhdpi/ic_account.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/drawable-xxxhdpi/ic_phone.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/example_resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/app/src/main/res/values/example_resources.xml -------------------------------------------------------------------------------- /art/hammerheadLMY48Isaulmm08162015053205.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/art/hammerheadLMY48Isaulmm08162015053205.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeroBarry/CoordinatorLayout/HEAD/gradle.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------