8

我有一个带有关于片段的平板电脑应用程序,它显示了我公司的数据。我想在页面上使用屏幕方向动态更改布局,但我还没有找到。

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

4

2 回答 2

12

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

我有2个RelativeLayout,都命名为“about.xml”,其中一个布局在dir res/layout-sw720dp/about.xml中,我的drawable用于纵向模式,res/layout-sw720dp-land/about.xml带有我的横向drawable。当我旋转我的平板电脑时,我的布局非常适合。希望我能帮助你

于 2013-07-24T12:39:48.217 回答
2

你可以试试这个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

于 2013-07-24T08:53:18.273 回答