我正在开发一个类似于Instagram的社交Android应用程序。用户可以上传1张照片(每个帖子)并附上说明。在时间线页面上,我从服务器获取照片并在Recycler View中显示。用户无需裁剪即可上传完整图像,并可在时间线页面中查看完整图像。我正在使用Picasso在图像视图中加载图像。
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/desc_tv"
android:adjustViewBounds="true"
android:id="@+id/event_image"
android:layout_marginTop="@dimen/dp_5"
android:layout_marginBottom="@dimen/dp_5"
/>
Picasso.with(mContext).load(Constants.mImgBaseURL + mPostList.get(position).getPost_picture()).into(h.mPostimg);