[It doesn't work]
requestWindowFeature(Window.FEATURE_LEFT_ICON;
setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
R.drawable.stat_happy);
setContentView(...);

[It works]
requestWindowFeature(Window.FEATURE_LEFT_ICON;
setContentView(...);
setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
R.drawable.stat_happy);


[It works but the icon is still in the left side.]
requestWindowFeature(Window.FEATURE_RIGHT_ICON;
setContentView(...);
setFeatureDrawableResource(Window.FEATURE_RIGHT_ICON,
R.drawable.stat_happy);

It's a little bit strange. Is it the expected behavior?


On 12月18日, 上午8时37分, "Dianne Hackborn" <[email protected]> wrote:
> You haven't given enough code to help, but fwiw you need to request all
> features before the first call to setContentView().
>
>
>
> On Wed, Dec 17, 2008 at 4:45 AM, Hastala <[email protected]> wrote:
>
> > Here is my code in "public void onCreate(Bundle savedInstanceState) "
>
> > if( requestWindowFeature(Window.FEATURE_LEFT_ICON) )
> >                setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
> > R.drawable.stat_happy);
>
> > Why I always get false when do requestWindowFeature to test the
> > LEFT_ICON? I am using the SDK_R2. Is there any precondition to enable
> > LEFT or RIGHT_ICON in the title?
>
> > Thanks
>
> --
> Dianne Hackborn
> Android framework engineer
> [email protected]
>
> Note: please don't send private questions to me, as I don't have time to
> provide private support.  All such questions should be posted on public
> forums, where I and others can see and answer them.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to