我有以下設置。在我的XML中,我有一堆圖像視圖。我試圖根據偏好設置和星期幾來顯示其中的一個。這一定很容易,但我找不到將變量傳遞給findViewByID的正確方法。這裏是代碼片段:將變量傳遞給findViewByID
String groupName = "R.id."+prefs.getString("groupListKey", "<unset>")+"_"+(Calendar.getInstance().get(Calendar.DAY_OF_WEEK));
ImageView image = (ImageView) findViewById(groupName);