Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

enter image description here

As you can see in image, I want shadow behind a Button. I have created Button with rounded corners. But problem is I can't generate a shadow behind that Button. How can I achieve this?

share|improve this question

3 Answers

Try this if this works for you

enter image description here

android:background="@drawable/drop_shadow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="6px"
        android:paddingTop="4px"
        android:paddingRight="8px"
        android:paddingBottom="9px"
share|improve this answer

adjust this to get your final view button_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item><layer-list>
                <item android:right="5dp" android:top="5dp"><shape>
                        <corners android:radius="3dp" />

                        <solid android:color="#D6D6D6" />
                    </shape></item>
                <item android:bottom="2dp" android:left="2dp"><shape>
                        <gradient android:angle="270" android:endColor="#E2E2E2" android:startColor="#BABABA" />

                        <stroke android:width="1dp" android:color="#BABABA" />

                        <corners android:radius="4dp" />

                        <padding android:bottom="10dp" android:left="10dp" android:right="10dp" android:top="10dp" />
                    </shape></item>
            </layer-list></item>
</selector>

in your xml layout

<Button
android:background="@drawable/button_selector"
...
..
/>
share|improve this answer

Android Button's background as shape with Shadow. The answer in the link should solve your problem. It draws shape based on layers. You could have a image with a shadow and just place the drawable for the button.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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