Fragment dialog without title

I am trying to create a fragment dialog and you need full space to display the information. so I want to disable the header. But after I am disabled, it no longer increases in width.

public class ArticleSearchFragment extends DialogFragment { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(STYLE_NO_TITLE, getTheme()); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.article_search, container, false); ... } 

And XML:

 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <AutoCompleteTextView android:id="@+id/searchField" android:layout_width="match_parent" android:layout_height="wrap_content" android:ems="10" android:hint="Ean / Name / Produkt Nummer" android:completionThreshold="1" /> <Button android:id="@+id/cancel" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/cancel" /> </LinearLayout> 
+7
source share
1 answer

enter this code in onCreateView() from dialog fragment

 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.fragment_view_image, null); getDialog().getWindow().requestFeature(Window.FEATURE_NO_TITLE); return view; } 

It will remove the title bar from the dialog fragment

+13
source

All Articles