可以在不设置 Activity 的 ContentView 的情况下获取对 View 的引用
我希望能够以与
RelativeLayoutrelative = (RelativeLayout)findViewById(R.id.relative);
相同的方式获取对 RelativeLayout
的引用,但不设置 < Activity
的 code>ContentView。我认为这可能与Infalter
有关?我的最终目标是获得它并将其添加为自定义视图对象的子视图。
I want to be able to get reference to a RelativeLayout
in the same way as
RelativeLayout relative = (RelativeLayout)findViewById(R.id.relative);
but without setting the ContentView
of the Activity
. I think it may have something to do with Infalter
? My ultimate aim is to get this and add it as a child view of a custom view object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 LayoutInflater。示例:
然后你可以...
Yes, you can use LayoutInflater. Example:
And then you could...