我是Android新手。任何人都可以告诉我如何在Android中以编程方式更改布局RootView
的高度?我试过的代码如下所示
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.sample, null);
view.getRootView().getLayoutParams().height = value;
执行此操作后,我在上面的行中获得NullPointerException
。
谁能帮我?提前谢谢。
答案 0 :(得分:5)
inflate调用返回的视图是根视图,因此这应该有效:
View view = inflater.inflate(R.layout.sample, null);
view.setLayoutParams(new ListView.LayoutParams(LayoutParams.MATCH_PARENT,<height>));
如果你要提供一个像这样膨胀的ViewGroup:
View view = inflater.inflate(R.layout.sample, containerForTheInflatedView);
然后view
将是ViewGroup,而不是您想要的根视图。