В чем разница между LayoutInflater.from(getContext()).inflate()
и getLayoutInflater().inflate()
методом?
Фрагмент кода 1:
View listItemView = LayoutInflater.from(getContext()).inflate(R.layout.layout_for_adapter, parent, false);
Фрагмент кода 2:
View listItemView =
getLayoutInflater().inflate(R.layout.layout_for_adapter, null);