SOLUTION: Well its my emulator and eclipse layout editor. On a real phone it works just fine :(
QUESTION:
android:topLeftRadius for corners is overriding the topRight, bottomRight, and bottomLeft.
So while I want the right side to be rounded the left side should be squared yet both sides are squaring.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#F000" />
<stroke
android:width="1px"
android:color="#BB000000" />
<padding
android:bottom="7dp"
android:left="10dp"
android:right="10dp"
android:top="7dp" />
<corners
android:bottomLeftRadius="0dp"
android:bottomRightRadius="10dp"
android:topLeftRadius="0dp"
android:topRightRadius="10dp" />
<gradient
android:angle="90"
android:centerColor="#00004C"
android:endColor="#000099"
android:startColor="#000000"
android:type="linear" />
</shape>
I am just calling it in xml of a button.
android:background="@drawable/button_layout"