Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac535811 authored by Ricardo Cervera's avatar Ricardo Cervera Committed by Android Git Automerger
Browse files

am f6dce8ee: am e974a59f: am 0f1e067a: am 472e234d: am 7af4e812: docs: Fixed...

am f6dce8ee: am e974a59f: am 0f1e067a: am 472e234d: am 7af4e812: docs: Fixed RecyclerView example. Bug: 16483811

* commit 'f6dce8eeda2889c3bdf78d11c41bbedc7abf8978':
  docs: Fixed RecyclerView example. Bug: 16483811
parents 730ca00f b042189a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {
                                                   int viewType) {
        // create a new view
        View v = LayoutInflater.from(parent.getContext())
                               .inflate(R.layout.my_text_view, parent);
                               .inflate(R.layout.my_text_view, parent, false);
        // set the view's size, margins, paddings and layout parameters
        ...
        ViewHolder vh = new ViewHolder(v);