gpt4 book ai didi

android - LayoutInflater父级

转载 作者:行者123 更新时间:2023-11-30 00:25:17 25 4
gpt4 key购买 nike

当父级为 null 时:

LayoutInflater I = getLayoutInflater();
RelativeLayout relativeLayout = (RelativeLayout)findViewById(R.id.Relative);
View v = I.inflate(R.layout.text,null);

relativeLayout.addView(v);

the text have params android:layout_centerHorizontal="true" android:layout_centerVertical="true" but when add manual to the relativeLayout the params dosent work

但是当我使用这段代码时:

   LayoutInflater I = getLayoutInflater();
RelativeLayout relativeLayout = (RelativeLayout)findViewById(R.id.Relative);
View v = I.inflate(R.layout.text,relativeLayout);

文本参数有效

text params work and hello word in center

为什么?

最佳答案

以“android:layout_”开头的参数用于描述 View 相对于其父 View 的放置方式,当您使用 inflator 构建 View 时您不会提供该 View 。

这应该很明显,但只需使用您发布的第二种方法即可。

关于android - LayoutInflater父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45489875/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com