我有一个平板电脑应用程序,其中包含显示我公司数据的片段。我想在页面上进行动态更改我的布局,但我还没有找到它。
如果有人得到解决方案,请提前致谢
答案 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)
如果您正在使用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