Android:以编程方式更改布局的根视图高度

时间:2013-02-28 13:54:15

标签: android android-layout android-linearlayout

我是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。 谁能帮我?提前谢谢。

1 个答案:

答案 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,而不是您想要的根视图。