I'm looking for a way to dim/blur background when the slidingdrawer is open but I couldn't find. Now, my question is, is it possible?

link|improve this question

50% accept rate
feedback

1 Answer

If I understood correctly you want to change the transparency of the area of the screen over which the sliding drawer is open.

You can try this if the above is correct.

 <SlidingDrawer
 android:id="@+id/drawer"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:handle="@+id/handle"
 android:content="@+id/content">

 <ImageView
     android:id="@id/handle"
     android:layout_width="88dip"
     android:layout_height="44dip" />

 <FrameLayout
     android:id="@id/content"
     android:layout_width="match_parent"
     android:layout_height="match_parent" 
     android:background="#AAFFFFFF" />

</SlidingDrawer>

By setting this, android:background="#AAFFFFFF" We are changing the transparency of the color white(FFFFFF).

I hope it helps..

link|improve this answer
Thank you for response but it sets whole activity's background. I'm just setting content part of the drawer's background as you said, is it normal? – GokcenG Dec 30 '11 at 14:41
I will find it much easier to help you if I were able to see the layout XML where you have made the changes. – R.daneel.olivaw Dec 30 '11 at 17:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.