0

是否可以使用 Android Annotations api 设置自定义标题?以前我会打电话

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title_layout);

在 onCreate 方法中,但这在 @AfterViews 注释方法中似乎是不可能的,因为它必须在设置 contentView 之前完成。有没有办法做到这一点?

4

1 回答 1

1

我使用的是 com.googlecode.androidannotations,androidannotations-api 版本 2.7.1。有一个更新的版本;org.androidannotations,androidannotations 版本 3.0.1,其中包含一个完美运行的 @CustomTitle 注释。

于 2014-09-02T05:31:50.797 回答