我正在尝试实现片段布局。我有一个作为 SplashScreen 服务的活动,并从网络上获取一些数据并创建我的自定义对象的 ArrayList。
通常,如果我使用 ListView,我会执行以下操作。
private ArrayList<Articles> articles;
private void isComplete() {
Intent intent = new Intent(SplashScreen.this, ListActivity.class);
intent.putExtra("data", articles);
startActivity(intent);
finish();
}
如何将相同的数据传递给片段?我非常感谢您的帮助。