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



我有一个平板电脑应用程序,里面有一个about片段,可以显示我公司的数据。当我在页面上时,我想随着屏幕方向动态地改变我的布局,但我还没有找到如何改变。

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

@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));
}

我有两个RelativeLayout,都名为"about.xml",其中一个布局在目录res/layout-sw720dp/about.xml中,我的绘图模式为纵向模式,res/layout-shw720dp-land/about.xml为横向绘图。当我旋转平板电脑时,我的布局非常适合。希望我能帮助你

您可以尝试一下http://blogs.captechconsulting.com/blog/steven-byle/android-tutorial-optimizing-phones-and-tablets-fragments

如果你使用的是ABS+viewpager,这将是一种困难(如果你找到一个解决方案,我很感兴趣!见我的最后一个问题)

这是官方文件http://developer.android.com/training/basics/fragments/fragment-ui.html

http://developer.android.com/guide/practices/tablets-and-handsets.html

http://developer.android.com/guide/practices/screens_support.html

相关内容

  • 没有找到相关文章

最新更新