i have a layout ,i want layout to be displayed on whole screen without title bar.
onCreate method of my activity :
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.home);
}
still getting gray title bar at top.
Set the
android:theme="@android:style/Theme.NoTitleBar"at application level in the manifest file.