1

在我的应用程序中,我需要根据用户在 SharedPreference 变量中存储的值声明一个数组。问题是数组需要在静态块中声明,因为需要在我的类中调用 onCreate() 之前声明数组的大小。

我的 Activity 中有一个 ExpandableList,其父数组是接下来 7 天的日期。

static int plannerSlotCount=7;
static public String[] parent = new String[plannerSlotCount];
static
{

    Calendar cal = Calendar.getInstance();
    String strdate = null;
    SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");

    int i;
    for(i=0;i<plannerSlotCount;i++)
    {

        if (cal != null) {
            strdate = sdf.format(cal.getTime());
            }
            parent[i] = strdate;
            cal.add(Calendar.HOUR_OF_DAY,24);
    }

}

如果我没有在静态块内声明数组,那么我会在

public View getGroupView(int groupPosition, boolean isExpanded,
            View convertView, ViewGroup parent) {
        TextView textView = getGenericView();
        textView.setText(getGroup(groupPosition).toString());
        return textView;
    }

所以,我猜我必须在静态块本身中声明数组的内容。

问题是我想更改要显示的天数(当前设置为 7)。所以,我想到了将数字保存在 SharedPreference 变量中并访问它来初始化数组。

我面临的问题是

    SharedPreferences preferences = getSharedPreferences(Settings.PREF_SETTINGS_FILE_NAME, MODE_PRIVATE);
    final int slotCounter = preferences.getInt("slotCount", 7);

给我一个错误说

Cannot make a static reference to the non-static method getSharedPreferences(String, int) from the type ContextWrapper

有没有可能的方法来实现这一点?

4

2 回答 2

1

你不能。由于

static {
}

当您第一次引用该类时会调用块。所以,我认为,在onCreatesi 打电话之前。为了访问SharedPreference,您需要一个context,并且.context之后有效onCreate。所以你不能SharedPreference在静态块中访问

于 2012-06-20T07:36:35.650 回答
0

首先,我不得不说你的方法听起来有点奇怪。为什么要将数组声明为静态并在 onCreate 之前对其进行初始化?如果这确实是一个要求,那么我不确定是否有解决方案,因为 onCreate() 是您第一次访问上下文。

我可以建议您将数组定义为静态,然后在 onCreate 中对其进行初始化(在使用之前)。除非该数组在您的活动之外使用,否则应该可以。

也许如果您分享更多细节(例如为什么它必须是静态的并在 onCreate 之前启动),您可以获得更多帮助。

于 2012-06-20T07:28:29.483 回答