如何爲小於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 {
...
}