Can someone please point me in the right direction how to do those bubbles or labels in the EditText something like those you see when you want to compose something in Stream for Google+ when you add a circle or contact? The Rectangle is an auto complete edittext.
feedback
|
|
What you are showing is the same behavior as the SMS stock application. Search for the code here to see how it's done. EDIT: The code should be in platform_packages_apps_mms. Take a look at the RecipientsEditor class. | |||||||||||
feedback
|
|
You can do this by creating a subclass of This example will put an a star in an edit field, replacing the text "test". Create an EditText in your layout with the id of "text" and put this in
I didn't see any classes that looked like they could wrap normal text in a drawable, but that could be pretty easily solved by overriding the | |||||||||||
feedback
|
|
If you mean the hints, you can add the simply with:
This will put the grey label in the EditText when it is empty. | |||||
|
feedback
|
|
To set the circle icon in the left of the You can do it on the layout xml file If you also want to give the bubble style, you must change the backgroud drawable by a 9-patch that have the style. here you have a tutorial for a 9-patch bubble for google maps. Hope it helped! :) | ||||
feedback
|
|
I think it use setCompoundDrawables() method to insert that picture inside edit text | |||
feedback
|