How to add another layout in xml in LinearLayout , which is already created in the res/layout folder?
For example, a ready layout is called game_field.xml
How to add another layout in xml in LinearLayout , which is already created in the res/layout folder?
For example, a ready layout is called game_field.xml
In your case, the <include/> tag is in a hurry <include/>
Example
<include layout="@layout/game_field"/> A bit more detail in the official training.
Source: https://ru.stackoverflow.com/questions/74697/
All Articles