Android - 如何动态更改片段布局

时间:2013-07-24 08:45:08

标签: android android-layout android-fragments android-screen

我有一个平板电脑应用程序,其中包含显示我公司数据的片段。我想在页面上进行动态更改我的布局,但我还没有找到它。

如果有人得到解决方案,请提前致谢

2 个答案:

答案 0 :(得分:11)

@ Yume177,我发现了怎么做:

@Override
public void onConfigurationChanged(Configuration newConfig) {
    // TODO Auto-generated method stub
    super.onConfigurationChanged(newConfig);
    RelativeLayout rl = (RelativeLayout) findViewById(R.id.about);
    rl.removeAllViews();
    rl.addView(View.inflate(myView.getContext(), R.layout.about, null));
}

我有两个名为“about.xml”的RelativeLayout,其中一个布局位于目录 res / layout-sw720dp / about.xml 中,我的drawable用于纵向模式, res / layout -sw720dp-land / about.xml 我的风景画。当我旋转平板电脑时,我的布局非常合适。希望我会帮助你

答案 1 :(得分:2)