我想将主要活动的上下文传递给另一个类,以便创建一个Toast。
我的主要活动调用一个将删除文件的类。 如果文件不存在,删除文件的类将调用toast。
这是我的代码:
public class MyActivity extends AppCompatActivity
{
public void onCreate(Bundle savedInstanceState)
{
// create a file
Button buttoncreate = (Button)findViewById(R.id.create_button);
Button buttondelete = (Button)findViewById(R.id.delete_button);
...
buttondelete.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new DeleteFile();
}
});
}
public class DeleteFile extends AsyncTask {
@Override
public Object doInBackground(Object[] params) {
File root = android.os.Environment.getExternalStorageDirectory();
File dir = new File(root.getAbsolutePath() + "/mydir");
if (!(dir.exists())) {
CharSequence text = "Files do not exist!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(getApplicationContext(), text, duration);
toast.show();
} else {
File file;
file = new File(dir, "mydata.bmp");
file.delete();
}
return(1);
}
}
答案 0 :(得分:5)
首先,您需要使用静态变量在Application Class中声明全局变量,
像这样的
class GlobalClass extends Application {
public static Context context;
@Override
public void onCreate() {
super.onCreate();
context = getApplicationContext();
}
}
第二,你需要在AndroidManifest.xml里面的应用程序标签中设置这个类 像这样:
<application
android:name=".GlobalClass"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >
然后,当您需要访问此数据时,请通过以下方式获取Application对象:
Toast toast = Toast.makeText(GlobalClass.context, text, duration);
toast.show();