Android App Development
iOS App Development
Flutter App Development
Cross Platform App Development
Hire on-demand project developers and turn your idea into working reality.
Big thanks to Webkul and his team for helping get Opencart 3.0.3.7 release ready!
Deniel Kerr
Founder. Opencart
Top Partners
Reusing layouts are particularly powerful as it allows you create reusable complex layouts.
Whenever we’re creating complex layouts and more featured layouts, then we have to add many ViewGroup’s and Views. But, our this complex layout is the cause of slowness and rendering problem in our application. If we want to Create optimized and easily understandable layouts then android give us the power to make it by using <include /> tag.
Let us suppose that, we want to add header text in all activity in the entire application. Then we can just declare it in all the layouts files as required. But if we have to change the header text or small modification then what happened? we have to perform changes in all XML file where we have used header text, which costs a lot of time.
So,
In android, we can create re-usable UI layouts by putting them into an extra XML and then by <include/> we can re-use that extra XML where we want.
In this tut, we’ll see how to use the <include /> tag in our XML file to avoid complexity and replication of code in layouts.
We just have to create an XML file which we want to reuse. In our example, the name of reusable XML file is header.xml.
Above, we have simply created a reusable layout. And use this header.xml file in all your activity/fragment layout files by <include />.
Here, we have created an activity_main, where we are using that header.xml layout by <include />.
Here we have used the headerText of the header.xml layout using <include />.
If we want to set headertext programatically then
in your MainActivity.java,
And if we have include the same layout multiple times like this
Then we can access the textViews or views by using following code snippets
Your email address will not be published. Required fields are marked*
Name*
Email*
Save my name email and website in this browser for the next time I comment.
We use cookies to personalize your experience. By continuing to visit this website you agree to our use of cookies. Learn more about privacy policy
Name
Email
Subject
Enquiry or Requirement
If you have more details or questions, you can reply to the received confirmation email.