如何为小于12的API进行以下工作?调用需要API级别12(当前最小值为9):android.os.Bundle#getString
sourceId = getIntent().getExtras().getString("sourceId", "defaultKey");
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1) {
sourceId = getIntent().getExtras().getString("sourceId", "defaultKey");
} else {
...
}