今天刚开始使用此服务,文档有点混乱。我Space
使用照片库模板创建了一个。在这个空间中,我有图像、作者和照片库类型的条目。我的问题是,如何检索图像以在我的 android 应用程序中显示?
要与 进行交互Contentful Delivery API
,我知道我必须使用CDAClient
对象和CDAEntry
对象来获取要获取的条目。
我已经在我的类的onCreate()
方法中定义了它,如下所示:Fragment
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = getActivity();
client = CDAClient.builder()
.setSpace("id-of-the-space-am-accessing")
.setToken("the-access-token")
.build();
entry = client.fetch(CDAEntry.class).one("the id of the image I want to retrieve");
}
在该onCreateView()
方法中,我试图查看这样的结果:
Log.e(TAG, "Result: " + entry.toString());
当我运行应用程序时,我在 Logcat 中得到了这个:
E/NEWS ACTIVITY﹕ Result: CDAEntry{id='2YhtjbebgscIwO2keYEa4O'}
此 id 与我传递给的图像的 id 匹配client.fetch(CDAEntry.class).one()
显然正在获取图像,但是如何显示它?