मैं एक कस्टम शीर्षक को लागू करने की कोशिश कर रहा हूं:
यहाँ मेरा हेल्पर वर्ग है:
import android.app.Activity;
import android.view.Window;
public class UIHelper {
public static void setupTitleBar(Activity c) {
final boolean customTitleSupported = c.requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
c.setContentView(R.layout.main);
if (customTitleSupported) {
c.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
}
}
}
यहाँ है जहाँ मैं इसे onCreate () में कहता हूँ:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setupUI();
}
private void setupUI(){
setContentView(R.layout.main);
UIHelper.setupTitleBar(this);
}
लेकिन मुझे त्रुटि मिलती है:
requestFeature() must be called before adding content