RecyclerView-特定の位置でビューを取得
とのアクティビティがRecyclerViewありますImageView。を使用しRecyclerViewて、画像のリストを水平に表示しています。私は画像をクリックすると活動中は、画像の全体像を示すべきです。これまでのところ、すべてが正常に動作します。RecyclerViewImageView これImageButtonsで、アクティビティにはあと2つあります:imageButton_leftとimageButton_right。をクリックするとimageButton_left、の画像がImageView左に変わり、のサムネイルにもRecyclerViewこの変更が反映されます。の場合も同様ですimageButton_right。 を回転させることができImageViewます。しかし、どうすればサムネイルを回転できRecyclerViewますか?どのようにして得ることができるViewHolderのはImageView? コード: アクティビティXML: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.v7.widget.RecyclerView android:id="@+id/recyclerview" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:orientation="vertical"> <ImageView android:id="@+id/original_image" android:layout_width="200dp" android:layout_height="200dp" android:scaleType="fitXY" android:src="@drawable/image_not_available_2" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:gravity="center_horizontal" android:orientation="horizontal"> <ImageButton android:id="@+id/imageButton_left" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:background="@drawable/rotate_left_icon" /> <ImageButton android:id="@+id/imageButton_right" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/rotate_right_icon" …