是否可以使用 Android Annotations api 设置自定义标题?以前我会打电话
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_layout);
在 onCreate 方法中,但这在 @AfterViews 注释方法中似乎是不可能的,因为它必须在设置 contentView 之前完成。有没有办法做到这一点?