找到当前类的Context
本文地址: http://blog.csdn.net/caroline_wendy
如果是在onContinueCreate或onCreate中, 直接使用this, 就代表当前类的context;
如果在类的其他方法内, 则需要使用this.context, 就可以代替.
如:
PreferenceUtils.set(this, FIRST_ACCESS_PREF_TAG, true); PreferenceUtils.set(StartAskActivity.this, FIRST_ACCESS_PREF_TAG, true);
时间: 2024-10-12 16:52:46