# Copied Layouts

Copied select_channel_fragment to select_feed_group_fragment

Copied select_channel_item to select_feed_group_item

# Change
Replaced the Layout references in the new Class SelectFeedGroupFragment
This commit is contained in:
Diana Victoria Furrer 2025-05-30 17:07:19 +02:00
parent 86869f0a14
commit e6c4690e7d
3 changed files with 83 additions and 2 deletions

View file

@ -83,7 +83,7 @@ public class SelectFeedGroupFragment extends DialogFragment {
@Override
public View onCreateView(@NonNull final LayoutInflater inflater, final ViewGroup container,
final Bundle savedInstanceState) {
final View v = inflater.inflate(R.layout.select_channel_fragment, container, false);
final View v = inflater.inflate(R.layout.select_feed_group_fragment, container, false);
recyclerView = v.findViewById(R.id.items_list);
recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
final SelectChannelAdapter channelAdapter = new SelectChannelAdapter();
@ -181,7 +181,7 @@ public class SelectFeedGroupFragment extends DialogFragment {
public SelectChannelItemHolder onCreateViewHolder(final ViewGroup parent,
final int viewType) {
final View item = LayoutInflater.from(parent.getContext())
.inflate(R.layout.select_channel_item, parent, false);
.inflate(R.layout.select_feed_group_item, parent, false);
return new SelectChannelItemHolder(item);
}