### Add MaterialTextField Dependency to Android Project Source: https://github.com/florent37/materialtextfield/blob/master/README.md Provides the Gradle `implementation` dependency required to integrate MaterialTextField into an Android project. This line should be added to the `build.gradle` file of your module to include the library. ```groovy implementation 'com.github.florent37:materialtextfield:1.0.7' ``` -------------------------------- ### Configure MaterialTextField with Available Attributes Source: https://github.com/florent37/materialtextfield/blob/master/README.md Shows various customizable attributes for MaterialTextField, including `mtf_cardCollapsedHeight`, `mtf_image`, `mtf_animationDuration`, `mtf_labelColor`, and `mtf_openKeyboardOnFocus`. These attributes allow for fine-tuning the appearance and behavior of the floating edit text component. ```xml ``` -------------------------------- ### Implement MaterialTextField in Android XML Layout Source: https://github.com/florent37/materialtextfield/blob/master/README.md Demonstrates how to wrap an EditText with MaterialTextField in an Android XML layout. This snippet shows the basic structure for creating a floating edit text with a custom image and hint, providing a visually appealing input field. ```xml ``` -------------------------------- ### Specify Image Drawable for MaterialTextField Source: https://github.com/florent37/materialtextfield/blob/master/README.md Illustrates how to set the `mtf_image` attribute in MaterialTextField to display a drawable icon. This attribute is crucial for adding a visual cue next to the input field, enhancing its clarity and user experience. ```xml app:mtf_image="@drawable/ic_mail_grey600_24dp" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.