I know this question is already been asked on stack but i tried all the solutions but of no use.Still i'm getting the same below error
Caused by: android.util.AndroidRuntimeException: requestFeature() must be called before adding content
below is code-
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
**requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);**
setContentView(R.layout.info);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title);
}
I tried many links like given below- https://stackoverflow.com/search?q=requestFeature%28%29+must+be+called+before+adding+content
is there any solution???
try this