Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的选项卡式应用程序,我想在设备处于横向模式时更改布局。我已经找到了如何做到这一点,但它不会更新到新的布局,直到我在选项卡之间切换。
这不是解决此问题的预期行为吗?
我发现我需要重新创建选项卡来更改它们正在使用的布局文件。我使用 onConfigurationChanged 方法来为方向的变化发文字。
public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig);
然后我就像我第一次创建它们一样重新创建了选项卡,一切都按计划进行。