我有以下设置。在我的 xml 中,我有一堆图像视图。我试图根据首选项中设置的数字和星期几仅显示其中一个。这一定很容易,但我找不到将变量传递给 findViewByID 的正确方法。这是代码片段:
String groupName = "R.id."+prefs.getString("groupListKey", "<unset>")+"_"+(Calendar.getInstance().get(Calendar.DAY_OF_WEEK));
ImageView image = (ImageView) findViewById(groupName);