Minimum SDK Version
The minimum SDK version is the lowest API you can run your application on without causing problems.
An integer designating the minimum API Level required for the application to run. The Android system will prevent the user from installing the application if the system's API Level is lower than the value specified in this attribute. You should always declare this attribute.
-- <uses-sdk> Documentation
Target SDK Version
The target SDK version simply says which API you can use methods from for your application.
An integer designating the API Level that the application targets. ... This attribute informs the system that you have tested against the target version and the system should not enable any compatibility behaviors to maintain your app's forward-compatibility with the target version. The application is still able to run on older versions (down to minSdkVersion).
-- <uses-sdk> Documentation
Example
As an example, let's say you use Display.getSize(Point) in your app. This method only works on APIs 13+, so you must target 13 or higher. However, if you do not call this method on devices using APIs 12 or lower, you will not encounter any issues.
But, let's say your app requires that you have access to Fragments and their methods (and don't want to use the support library). Then, you must have a minimum SDK level of 11--otherwise, it will crash on devices lower than that API level.
Short answer
android:minSdkVersion="8" means your app can be used on Android 2.2+. android: targetSdkVersion="16" means you have access to anything from Android 4.1+ whenever you compile your app (but does not mean that older devices can use those features).