本文介绍了添加布局Android中的视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 XML
文件中定义的pretty复杂的布局,现在我想这个布局添加为使用视图 addView
或别的东西。
I have a pretty complex layout defined in xml
file , now I want to add this layout as a view using addView
or something else.
由于布局是pretty复杂得多,它的pretty繁琐的过程写code布局,然后将其添加为一个视图。所以,反正是有负载布局资源
并将其添加为一个视图。
As layout is pretty much complex , its pretty cumbersome process to write the code for layout and then add it as a view. So is there anyway to load layout resource
and add it as a view.
我要的布局加入到的WebView 的
I want to add the layout into WebView
推荐答案
使用
LayoutInflater factory = LayoutInflater.from(this);
View myView = factory.inflate(R.layout.my_layout_id, null);
然后用 addView(MyView的)
这篇关于添加布局Android中的视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!