I have these radio buttons and they need android:width=\"X\" and android:height\"X\" however, I do not know how to set these properties so that the
Set the height and width using dp instead of px. See the answer to this post for more information on the units. What is the difference between "px", "dp", "dip" and "sp" on Android?
I would also suggest you familiarize yourself with android's documentation on supporting multiple screens.
Okay, so I've taken a moment to whip up a quick example targeted at Android 1.5.
You can find the source here.
In short, you need to take the following steps:
Place your images in res/drawable. You should have at least 4 icons: Pressed & Unchecked, Pressed & Checked, Not Pressed & Unchecked, Not Pressed & Checked
Create a selector type layout in res/drawable. Here is mine:
Then set-up your RadioGroup like so:
I have specified dimension of 50dp as the dimension of my drawables are 50px x 50px. Also notice I am setting android:button and not android:background.
Here is a signed APK of the project above: Custom RadioButton (Note: it is targeted to SDK version 4 so it wouldn't request SD and Phone permissions)
This should give the following result:

Hope this helps.