在我的应用程序中,我正在代码下方为我的活动设置自定义标题。
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.welcome_activity);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.accounts_custom_title);
现在我的要求是打开键盘时,我想用新的布局更新Window.FEATURE_CUSTOM_TITLE布局。
有什么解决办法吗?