我是安卓新手。谁能告诉我如何RootView
在 Android 中以编程方式更改布局的高度?我尝试过的代码如下
LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.sample, null);
view.getRootView().getLayoutParams().height = value;
执行此操作后,我NullPointerException
在上面的行中得到了一个。谁能帮我?提前致谢。