আমি একটি কাস্টম শিরোনামবার বাস্তবায়নের চেষ্টা করছি:
এখানে আমার সহায়ক শ্রেণি:
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);
}
}
}
এখানে আমি এটি অনক্রিট () এ কল করেছি:
@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