从drawable中获取图片并使用 xml fitXY属性在recyclerview中设置它然后我将此图片传递到下一个必须以不同尺寸显示的活动,它将在哪里给出错误。
错误:R未识别
针对此问题的任何解决方案?
Recycler视图从drawable,width,height = 345 * 500 px
中获取图片Recycler行布局
<ImageView
android:id="@+id/book_cover"
android:layout_width="72dp"
android:layout_height="72dp"
android:layout_marginLeft="6dp"
android:layout_marginRight="7dp"
android:layout_marginTop="4dp"
android:scaleType="fitXY" />
<!-- android:src="@drawable/closing_time" -->
<TextView
android:id="@+id/book_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:layout_toRightOf="@+id/book_cover"
android:text="Closing Time By Joe Queenan"
android:textColor="#000000"
android:textSize="19sp" />
这里我正在缩放图片72 * 72
然后我使用
将此数据传递给下一个活动 intent.putExtra("imageId", id[position]);
intent.putExtra("Title", title[position]);
和接收活动,我再次使用
重新缩放此图片<ImageView
android:id="@+id/image_view"
android:layout_width="match_parent"
android:layout_height="260dp"
android:layout_below="@+id/app_bar"
android:scaleType="fitXY" />
to match_parent * 260dp
错误:
任务'执行失败':app:mergeDebugResources'
crunching cruncher imageName.png失败