Obsolete
Status Update
Comments
al...@android.com <al...@android.com>
lb...@gmail.com <lb...@gmail.com> #2
The RecyclerView is a brand new widget in the support library.
There are some known issues with using RecyclerView in the layout rendering and layout editor.
We are working on a fix; you can star this issue if you want to keep track of the progress.
There are some known issues with using RecyclerView in the layout rendering and layout editor.
We are working on a fix; you can star this issue if you want to keep track of the progress.
sa...@google.com <sa...@google.com> #3
Is there a ETA when this bug is fixed?
I would say it is quiet simple to fix. You just need to use any LayoutManager.
Are there any plans when this View will be published for older platforms? AFIK it works even on Gingerbread.
I would say it is quiet simple to fix. You just need to use any LayoutManager.
Are there any plans when this View will be published for older platforms? AFIK it works even on Gingerbread.
Description
I'm currently getting around this by wrapping setTitle() with my own method that manually calls requestLayout():
Toolbar toolbar = (Toolbar) activity.findViewById( R.id.action_bar );
if( toolbar != null )
{
toolbar.requestLayout();
toolbar.invalidate();
}
This is important for when you are changing out the main content fragment of an Activity and having the Fragment set the Actionbar title.