androidandroid-recyclerviewsimpleadapter

Image in row of recyclerview disappears after rotation


In my recyclerview I set an image (in recyclerview row) visible or not visible according some condition.

However after I rotate the screen the image disappears, how do I keep the image visible on it`s position in the recyclerview after rotating the screen?

Thank you for your help and happy holidays ;)

I am using an implementation of the SimpleAdapter.

public class SimpleAdapter extends RecyclerView.Adapter<SimpleAdapter.SimpleViewHolder> implements FollowRedirectsCallback {

public static class SimpleViewHolder extends RecyclerView.ViewHolder {
        ...
        public final View icCancel;

        public SimpleViewHolder(View view) {
            super(view);
            ...
            icCancel = view.findViewById(R.id.icCancel);
        }
    }

    public SimpleAdapter(Context context, String[] data, long userId, int dlTypeValue) {
        mContext = context;
        userID = userId;
        DLTypeValue = dlTypeValue;
        if (data != null)
            mData = new ArrayList<String>(Arrays.asList(data));
        else mData = new ArrayList<String>();
    }

    public SimpleViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        final View view = LayoutInflater.from(mContext).inflate(R.layout.simple_item, parent, false);
        return new SimpleViewHolder(view);
    }

@Override
    public void onBindViewHolder(final SimpleViewHolder holder, final int position) {
    ...
    // How to keep this image visible after rotation of the screen?
    if (somecondition) {
      holder.icCancel.setVisibility(View.VISIBLE);
    }
}

EDIT: I initialze my adapter in the the corresponsent activity:

public class DownloadsActivity extends BaseActivity {

    RecyclerView recyclerView;
    Parcelable state;
    SimpleAdapter mAdapter;
    SimpleSectionedRecyclerViewAdapter mSectionedAdapter;
    SimpleSectionedRecyclerViewAdapter.Section[] dummy;

@AfterViews
    public void init() {
    recyclerView = (RecyclerView) findViewById(R.id.recycler_view);

        //setLayout Manager
        LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
        recyclerView.setLayoutManager(linearLayoutManager);
        recyclerView.setHasFixedSize(true);

        dummy = new SimpleSectionedRecyclerViewAdapter.Section[sections.size()];
        mSectionedAdapter = new
                SimpleSectionedRecyclerViewAdapter(this, R.layout.section, R.id.section_text, mAdapter);
        mSectionedAdapter.setSections(sections.toArray(dummy));


        //Apply this adapter to the RecyclerView
        recyclerView.setAdapter(mSectionedAdapter);
   }

@Override
protected void onPause() {
    super.onPause();
    // save RecyclerView state
    state = recyclerView.getLayoutManager().onSaveInstanceState();
}

@Override
protected void onResume() {
    super.onResume();
    if (inProgress) {
        progresstxt.setVisibility(View.VISIBLE);
        downloadprogress.setVisibility(View.VISIBLE);
    }

    // restore RecyclerView state
    recyclerView.getLayoutManager().onRestoreInstanceState(state);
}

}

Solution

  • You might be able to save the visibility state of the images in an ArrayList, then pass it as a parameter to the adapter. In your Activity, save that ArrayList using onSaveInstanceState.

    public class YourActivity extends BaseActivity {
        /* some codes */
    
        // possible values are: VISIBLE, INVISIBLE, or GONE
        private ArrayList<Integer> imagesState = new ArrayList<>();
    
        /* some codes */
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
           if(savedInstanceState != null) {
               imagesState = savedInstanceState.getIntegerArrayList("key");
           }
    
           // Pass the imagesState to the adapter as a parameter here
        }
    
        @Override
        public void onSaveInstanceState(Bundle outState) {
            super.onSaveInstanceState(outState);
            outState.putIntegerArrayList("key", imagesState);
        }
    
        /* some codes */
    }
    

    Then in your Adapter:

    public class SimpleAdapter extends RecyclerView.Adapter<SimpleAdapter.SimpleViewHolder> implements FollowRedirectsCallback {
    
        /* some codes */
    
        public SimpleAdapter(Context context, String[] data, long userId, int dlTypeValue, ArrayList<Integer> imagesState) {
            /* some codes */
            this.imagesState = imagesState;
        }
    
        @Override
        public void onBindViewHolder(SimpleViewHolder holder, int position) {
            /* some codes */
    
            if (imagesState.get(position) == View.VISIBLE)
                holder.icCancel.setVisibility(View.VISIBLE);
            else if(imagesState.get(position) == View.INVISIBLE)
                holder.icCancel.setVisibility(View.INVISIBLE);
            else
                holder.icCancel.setVisibility(View.GONE);
        }
    }