Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 android 的子布局中添加膨胀布局。
例如
我正在使用布局 a、b、c、d。
我需要在 c 布局中设置膨胀布局。
可以设置子布局的布局吗?
谢谢!!问候, 阿尼
当然!我要在这里记忆,所以实际的代码可能会有所不同。布局应该有一个addView(View v)方法。如果你想添加View b到View a,你应该能够做到a.addView(b);
addView(View v)
View b
View a
a.addView(b);