Book Image

Android 6 Essentials

By : Yossi Elkrief
Book Image

Android 6 Essentials

By: Yossi Elkrief

Overview of this book

Android 6 is the latest and greatest version of the Android operating system, and comes packed with cutting edge new features for you to harness for the benefit of building better applications. This step-by-step guide will take you through the basics of the Android Marshmallow permissions model and beyond into other crucial areas such as the Audio,Video,Camera API and Android’s at work features. Learn how to create, deploy, and manage Android applications with Marshmallow’s API and the latest functionalities. The combination of instructions and real-world examples will make your application deployment and testing a breeze.
Table of Contents (16 chapters)
Android 6 Essentials
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

Text selection


Part of the material design guide specifications discuss text selection in your applications. Users select text within your app, and you now have an API to incorporate a floating toolbar design pattern that's similar to a contextual action bar. For more information about the design specifications, head to http://www.google.com/design/spec/patterns/selection.html#selection-item-selection.

The implementation steps are as follows:

  1. Change your ActionMode calls to startActionMode(Callback,ActionMode.TYPE_FLOATING).

  2. Extend ActionMode.Callback2.

  3. Override the onGetContentRect() method and provide coordinates for the content Rect object in the view.

  4. Call the invalidateContentRect() method when you need to invalidate the Rect object and it's position is no longer valid.

Support library notice

Floating toolbars are not backward-compatible. Appcompat takes control over ActionMode objects by default. This will prevent floating toolbars from being displayed.

The implementation steps are as follows...