在Android开发中,上下文(Context)是一个非常重要的概念,它提供了访问应用程序资源和系统服务的途径。下面是一些常见的使用案例和代码示例:
Context context = getApplicationContext();
Context context = this;
Context context = getContext();
String appName = context.getString(R.string.app_name);
int color = ContextCompat.getColor(context, R.color.colorPrimary);
float textSize = context.getResources().getDimension(R.dimen.text_size);
Intent intent = new Intent(context, AnotherActivity.class);
context.startActivity(intent);
Toast.makeText(context, "Hello World", Toast.LENGTH_SHORT).show();
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.layout_file, null);
File filesDir = context.getFilesDir();
这些案例和代码示例展示了在Android开发中如何使用上下文。根据实际需求,可以进一步扩展上下文的使用方式。