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.
有没有办法让这成为可能?我正在使用 Inflate 但它不起作用。那么有人有其他方法吗?
尝试
1. 合并布局,如 Android Developers Resources中所述。
2. 一个Activity使用两个layout xml文件
如果你想在屏幕上显示两种不同的布局,只需使用片段。这是解决您的问题的正确方法。
使用 LayoutInflater
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); row = vi.inflate(R.layout.Second,null);