Add title to bottom sheet

This commit is contained in:
M M Arif
2022-05-22 12:43:45 +05:00
parent 0dd5aebc68
commit 10090dd5d8

View File

@@ -111,9 +111,12 @@ public class WikiListAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolde
View view = LayoutInflater.from(ctx).inflate(R.layout.bottom_sheet_wiki_in_list, itemView.findViewById(android.R.id.content), false);
TextView bottomSheetHeader = view.findViewById(R.id.bottom_sheet_header);
TextView editWiki = view.findViewById(R.id.edit_wiki);
TextView deleteWiki = view.findViewById(R.id.delete_wiki);
bottomSheetHeader.setText(wikiPageMeta.getTitle());
BottomSheetDialog dialog = new BottomSheetDialog(ctx);
dialog.setContentView(view);
dialog.show();