After upgrading to SDK version 15 of version 12, my EditTexts and Buttons all look distorted like this ...


Now is this a bug with the revision? . When I look at what the layout with the Graphic Layout tab looks like, it looks fine. But as soon as it is compiled and placed on my phone or emulator, it is distorted.
Here is for StateListDrawable xml for buttons. Each link to this is 9patch . EditTexts is done in the same way.
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_grey_pressed" android:state_pressed="true"></item>
<item android:drawable="@drawable/button_grey_pressed" android:state_focused="true"></item>
<item android:drawable="@drawable/button_grey_pressed" android:state_selected="true"></item>
<item android:drawable="@drawable/button_grey_default"></item>
</selector>
b_yng source
share