如何使用Retrofit库保存从服务器解析的数据。这样用户就可以在没有互联网连接时查看它。
final RecyclerView recyclerView = (RecyclerView) findViewById(R.id.post_recycler_view);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
ApiInterface apiService =
ApiClient.getClient().create(ApiInterface.class);
Call<ArrayList<Post>> call = apiService.getAllPosts();
call.enqueue(new Callback<ArrayList<Post>>() {
@Override
public void onResponse(Call<ArrayList<Post>> call, Response<ArrayList<Post>> response) {
int statusCode = response.code();
List<Post> posts = response.body();
recyclerView.setAdapter(new PostListAdapter(posts, R.layout.activity_main, getApplicationContext()));
}
@Override
public void onFailure(Call<ArrayList<Post>> call, Throwable t) {
Log.e(TAG, t.toString());
}
});我希望保存响应、持久化并将数据显示到RecyclerView中。帮助保存使用ORM将不胜感激,我试着使用糖ORM和ActiveAndroid,但我不能成功:
当我扩展SugarRecord或Model时,在日志猫上没有任何错误而终止
发布于 2017-10-15 01:31:03
经过大量的研究,我成功地坚持了使用Retrofit分析的反应。我已经使用领域将数据持久化,以便脱机使用。我将描述我已经实现的方法,这些方法可能会帮助其他人遇到这类问题。
1.向Gradle添加领域依赖项
应用级分级文件
`apply plugin: 'realm-android'`
repositories {
maven { url "https://jitpack.io" }
}
classpath "io.realm:realm-gradle-plugin:1.2.0" --> on project level gradle file2.扩展RealmObject
public class Post extends RealmObject {
@SerializedName("userId")
@Expose
private Integer userId;
@SerializedName("id")
@Expose
private Integer id;
@SerializedName("title")
@Expose
private String title;
@SerializedName("body")
@Expose
private String body;
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
}3.如果不存在,则创建领域配置
if (realmConfiguration == null) {
realmConfiguration = new RealmConfiguration.Builder(this)
.build();
}
realm = Realm.getInstance(realmConfiguration);4.保存已解析的数据
Call<List<Post>> call = apiService.getAllPosts();
call.enqueue(new Callback<List<Post>>() {
@Override
public void onResponse(Call<List<Post>> call, Response<List<Post>> response) {
closeProgress();
if (response.isSuccessful()) {
List<Post> posts = response.body();
mRecyclerView.setAdapter(new PostAdapter(posts, R.layout.activity_main, getApplicationContext()));
for (int i = 0; i < posts.size(); i++) {
realm.beginTransaction();
Post post = realm.createObject(Post.class);
post.setUserId(posts.get(i).getUserId());
post.setId(posts.get(i).getId());
post.setTitle(posts.get(i).getTitle());
post.setBody(posts.get(i).getBody());
realm.commitTransaction();
}
mRecyclerView.setVisibility(View.VISIBLE);
}
}
@Override
public void onFailure(Call<List<Post>> call, Throwable t) {
t.printStackTrace();
}
});5.查询和膨胀领域保存的数据
RealmResults<Post> posts = realm.where(Post.class).findAll();
mRecyclerView.setAdapter(new PostAdapter(posts, R.layout.activity_main, getApplicationContext()));
}下面的方法帮助我解决我的问题,我希望这将有助于解决您的问题。如果您在执行解决方案时遇到任何问题,您可以征求我的意见。
https://stackoverflow.com/questions/42825500
复制相似问题