Re: [android-developers] Using a logo instead of icon in a SearchView and postioning of a ViewSwitcher

2012-12-14 Thread farble1670
sorry for the "me too" post, but me too. i'd really like to understand what's going on with the launcher vs. logo. On Monday, September 24, 2012 2:30:37 AM UTC-7, Martijn van Mechelen wrote: > > Does anyone know how to show a custom logo instead of the laucher app in > the SearchView ? > > Than

Re: [android-developers] Using a logo instead of icon in a SearchView and postioning of a ViewSwitcher

2012-09-24 Thread Martijn van Mechelen
Does anyone know how to show a custom logo instead of the laucher app in the SearchView ? Thanks, Martijn Op donderdag 20 september 2012 09:22:43 UTC+2 schreef Martijn van Mechelen het volgende: > > Hi Kostya, > > Your suggested solution seems to solve the second problem (the incorrect > posi

Re: [android-developers] Using a logo instead of icon in a SearchView and postioning of a ViewSwitcher

2012-09-20 Thread Martijn van Mechelen
Hi Kostya, Your suggested solution seems to solve the second problem (the incorrect positioning of the ViewSwitcher). Do you also know a solution for the first problem (the displayment of the laucher app icon instead of custom logo in the SearchView)? Thanks, Martijn Op dinsdag 18 september

Re: [android-developers] Using a logo instead of icon in a SearchView and postioning of a ViewSwitcher

2012-09-19 Thread Martijn van Mechelen
Hi Kostya, Thanks for your reply. We'll try it out and let you know if it worked. Martijn Op dinsdag 18 september 2012 13:30:13 UTC+2 schreef Kostya Vasilyev het volgende: > > The answer at SO uses this: > > actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME); > > Since your action bar has

Re: [android-developers] Using a logo instead of icon in a SearchView and postioning of a ViewSwitcher

2012-09-18 Thread Kostya Vasilyev
The answer at SO uses this: actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME); Since your action bar has different content, you might want to try this: actionBar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TiTLE); or just this: actionBar.setDisplayShowTitleEnabled(false); -- K 2012/9/