Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8310095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T19:20:07+00:00 2026-06-08T19:20:07+00:00

I am looking for a way to override my own XML view in android.

  • 0

I am looking for a way to override my own XML view in android.
So I only have to specify settings (like background, border, default content) once – and use it again.

The problem is that I can’t find anything about it.
(The things I found are about using a java class in XML to override, this is not what I want)

This is some non-working code, but I hope it explains it well enough to you:

main.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <field android:text="@string/str1" />
    <field android:text="@string/str2" />
    <field android:text="@string/str3" />
    <field android:text="@string/str4" />
    <field android:text="@string/str5" />
</LinearLayout>

code representing field (field.xml):
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/field"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@layout/field_background"
    android:text="@string/default_string"/>

As you see field itself is once defined and used many times with one customization. (Another string as text set)

This doesn’t work at all, but I hope someone knows a way to make something like this work. (Without coding, just XML)

Thanks,
Dennis

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T19:20:09+00:00Added an answer on June 8, 2026 at 7:20 pm

    I’d suggest that you set up a style. In some file (usually styles.xml) in res/values, add a style for your field:

    <style name="DefaultTextFieldStyle">
        <item name="android:id">@+id/field</item>
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:background">@layout/field_background</item>
    </style>
    

    Then in main.xml:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <TextView style="@style/DefaultTextFieldStyle"
            android:text="@string/str1" />
        <TextView style="@style/DefaultTextFieldStyle"
            android:text="@string/str2" />
        <TextView style="@style/DefaultTextFieldStyle"
            android:text="@string/str3" />
        <TextView style="@style/DefaultTextFieldStyle"
            android:text="@string/str4" />
        <TextView style="@style/DefaultTextFieldStyle"
            android:text="@string/str5" />
    </LinearLayout>
    

    I just copied your values, but it’s wrong to have the same android:id value for several views in a layout and it’s weird to have a layout as a background.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am looking for a way to override default decimal.ToString(c) method calls. I have
I have been looking for a way to allow users to manually override geolocation
I'm looking for way to create list view as like in IOS with pinned
I'm looking for a way to set up my own default property values for
I am looking for a way to override the generation of the url for
I'm looking for a way to rewrite URLs only if the path doesn't exist.
I'm looking at a way to have a subversion repository to be basically a
I'm looking for an elegant way to override values in an associative array. For
I have got several classes looking like the one below, and I need to
I'm looking for a neat way to override a class from the bootstrap class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.