Question

I want to create a search box with the search button directly to the right of the EditText without any spacing, like how like the address bar on the internal browser application looks (see image below). Is this possible or do I need to create it myself?

Screenshot of the Android browser search bar http://img220.imageshack.us/img220/7338/gp2.png

Was it helpful?

Solution

I think it'll take a bit of customization; you can look at the source here in the open source tree:

https://android.googlesource.com/platform/frameworks/base/+/froyo-release/core/res/res/layout/search_bar.xml

The relevant bits are:

<view ...
  ...
  android:background="@drawable/textfield_search"
  ...
/>

<Button 
  ...
  android:background="@drawable/btn_search_dialog"
  ...
/>

As you can see, it's using custom drawables (i.e. not @android:drawable...).

And yes, this can all be found using Hierarchy Viewer, as per Pentium10's response.

OTHER TIPS

Use Hierarchy Viewer to get the view from the Internal Browser

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top