基本的例子
活动中的标准用法:
Context context = getApplicationContext();
片段中的标准用法:
Context context = getActivity().getApplicationContext();
this
(在从 Context 扩展的类中,例如 Application,Activity,Service 和 IntentService 类)
TextView textView = new TextView(this);
另一个例子:
Intent intent = new Intent(this, MainActivity.class);
startActivity(intent);