mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
レイアウトのInflateを忘れていたので追加
This commit is contained in:
parent
56eecb45e4
commit
d714aef47f
|
@ -1,5 +1,6 @@
|
|||
package one.nem.lacerta.feature.debug.common.adapter;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
|
@ -24,7 +25,8 @@ public class DebugMenuDocumentListItemAdapter extends RecyclerView.Adapter<Debug
|
|||
@NonNull
|
||||
@Override
|
||||
public DebugMenuDocumentListItemAdapter.DebugMenuDocumentListItemViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||
return null;
|
||||
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_item_debug_menu_document, parent, false);
|
||||
return new DebugMenuDocumentListItemViewHolder(view);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue
Block a user