我目前正在开发一个 Android 应用程序,并使用序列化文件。我有一个方法可以将 Java 对象序列化为一个带有 Context 参数的文件。在另一个类中工作时,我可以检索一个有效的 Context 对象,但是当我在这个扩展 AppCompatActivity 的类上时,我不太确定该怎么做。我尝试使用 getApplicationContext() ,但这仍然给了我一个空值的上下文。
这是我到目前为止所拥有的基础:
public class BookView extends AppCompatActivity {
private static Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_book);
Book book = Browse.books.get(getIntent().getIntExtra("index", 0));
Browse.book = book;
setUpScreen(book);
context = getApplicationContext();
}
private void setUpChapters(Book book){
ListView chapters = (ListView) findViewById(R.id.chapters);
ChapterAdapter adapter = new ChapterAdapter(this, R.layout.row, book.getChapters());
chapters.setAdapter(adapter);
if (context != null) {
book.serialize(context);
}
else {
System.out.println("Null bookview context");
}
chapters.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Intent myIntent = new Intent(getApplicationContext(), Reader.class);
myIntent.putExtra("index", position);
startActivity(myIntent);
}
});
}
}
如何获取可以传递给序列化的上下文的非空值?