Here are my answers entirely from an Android developer's perspective (I have no experience with PhoneGap, so I can't say how that affects things):
For the majority of my testing, I focus on 320x480 and 480x800. For tablets, you're also going to want to specifically test against the Galaxy Tab (see Samsung's site for more details on testing in the emulator).
Layouts in Android are generally designed (or should be) to support any screen size. Typically Views are set to MATCH_PARENT (previously FILL_PARENT) or WRAP_CONTENT, so their size depends on either what layout they are in or what content they contain rather than how large the display is. You can also specify "DP" (density-independent pixels), which will scale automatically for you (so 2dp would be 2px on an HVGA device but 3px on a WVGA device). Fonts should be specified in SP, which are essentially the same thing but also take into account the user's font preference.
You can also apply weights for stretching Views. For example, if you have a LinearLayout with horizontal orientation, you can put two Views in it (let's say a TextView and an EditTextView). You might set both of those to WRAP_CONTENT for their width and height, but you would probably add a layout_weight="1" to the EditTextView, telling it to fill the remaining space. In addition, you can create specific layouts for large devices to customize the display for the Galaxy Tab.
The higher the resolution, the more pixels the emulator is handling. You'll also notice performance difference among the versions of Android.
That being said, it looks like PhoneGap is more or less like developing a WebApp, in which case you'll find the Android Web Apps articles helpful.
Edit (responses to first comment since my formatting was getting messed up):
No, there isn't anything to change in the AndroidManifest other than specifying what you support:
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
For CSS, you can specify styles based on density or use standard percents, em measurements, etc.