I want to show fragment in activity without no title bar. i also have added request window without title bar before inflating the views. this is not happening and it is showing exception as
requestFeature() must be called before adding content
at com.android.internal.policy.impl.PhoneWindow.requestFeature(PhoneWindow.java:318)
at com.wishkart.wishkart.dialogFragment.HomeProductDialogFragment.onCreateView(HomeProductDialogFragment.java:30)
My fragment code is given as:
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
getActivity().getWindow().requestFeature(Window.FEATURE_NO_TITLE);
getActivity().getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
View view = inflater.inflate(R.layout.custom_product_popup, container, false);
return view;
}