material-components / material-components-android-codelabs

Codelabs for Material Components for Android (MDC-Android)
Apache License 2.0
220 stars 160 forks source link

MDC-102 code uses "GridLayoutManager.VERTICAL" instead of "RecyclerView.VERTICAL" #38

Open acutetech opened 5 years ago

acutetech commented 5 years ago

On the web page, the sample code in ProductGridFragment.java onCreateView() includes this:

recyclerView.setLayoutManager(new GridLayoutManager(getContext(), 2, GridLayoutManager.VERTICAL, false));

But GridLayoutManager.VERTICAL should be RecyclerView.VERTICAL

The finished-codelab code is correct.