Declaring a custom android UI element using XML Declaring a custom android UI element using XML xml xml

Declaring a custom android UI element using XML


The Android Developer Guide has a section called Building Custom Components. Unfortunately, the discussion of XML attributes only covers declaring the control inside the layout file and not actually handling the values inside the class initialisation. The steps are as follows:

1. Declare attributes in values\attrs.xml

<?xml version="1.0" encoding="utf-8"?><resources>    <declare-styleable name="MyCustomView">        <attr name="android:text"/>        <attr name="android:textColor"/>                    <attr name="extraInformation" format="string" />    </declare-styleable></resources>

Notice the use of an unqualified name in the declare-styleable tag. Non-standard android attributes like extraInformation need to have their type declared. Tags declared in the superclass will be available in subclasses without having to be redeclared.

2. Create constructors

Since there are two constructors that use an AttributeSet for initialisation, it is convenient to create a separate initialisation method for the constructors to call.

private void init(AttributeSet attrs) {     TypedArray a=getContext().obtainStyledAttributes(         attrs,         R.styleable.MyCustomView);    //Use a    Log.i("test",a.getString(         R.styleable.MyCustomView_android_text));    Log.i("test",""+a.getColor(         R.styleable.MyCustomView_android_textColor, Color.BLACK));    Log.i("test",a.getString(         R.styleable.MyCustomView_extraInformation));    //Don't forget this    a.recycle();}

R.styleable.MyCustomView is an autogenerated int[] resource where each element is the ID of an attribute. Attributes are generated for each property in the XML by appending the attribute name to the element name. For example, R.styleable.MyCustomView_android_text contains the android_text attribute for MyCustomView. Attributes can then be retrieved from the TypedArray using various get functions. If the attribute is not defined in the defined in the XML, then null is returned. Except, of course, if the return type is a primitive, in which case the second argument is returned.

If you don't want to retrieve all of the attributes, it is possible to create this array manually.The ID for standard android attributes are included in android.R.attr, while attributes for this project are in R.attr.

int attrsWanted[]=new int[]{android.R.attr.text, R.attr.textColor};

Please note that you should not use anything in android.R.styleable, as per this thread it may change in the future. It is still in the documentation as being to view all these constants in the one place is useful.

3. Use it in a layout files such as layout\main.xml

Include the namespace declaration xmlns:app="http://schemas.android.com/apk/res-auto" in the top level xml element. Namespaces provide a method to avoid the conflicts that sometimes occur when different schemas use the same element names (see this article for more info). The URL is simply a manner of uniquely identifying schemas - nothing actually needs to be hosted at that URL. If this doesn't appear to be doing anything, it is because you don't actually need to add the namespace prefix unless you need to resolve a conflict.

<com.mycompany.projectname.MyCustomView    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:background="@android:color/transparent"    android:text="Test text"    android:textColor="#FFFFFF"    app:extraInformation="My extra information"/> 

Reference the custom view using the fully qualified name.

Android LabelView Sample

If you want a complete example, look at the android label view sample.

LabelView.java

 TypedArray a=context.obtainStyledAttributes(attrs, R.styleable.LabelView); CharSequences=a.getString(R.styleable.LabelView_text);

attrs.xml

<declare-styleable name="LabelView">    <attr name="text"format="string"/>    <attr name="textColor"format="color"/>    <attr name="textSize"format="dimension"/></declare-styleable>

custom_view_1.xml

<com.example.android.apis.view.LabelView    android:background="@drawable/blue"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    app:text="Blue" app:textSize="20dp"/>

This is contained in a LinearLayout with a namespace attribute: xmlns:app="http://schemas.android.com/apk/res-auto"

Links


Great reference. Thanks!An addition to it:

If you happen to have a library project included which has declared custom attributes for a custom view, you have to declare your project namespace, not the library one's. Eg:

Given that the library has the package "com.example.library.customview" and the working project has the package "com.example.customview", then:

Will not work (shows the error " error: No resource identifier found for attribute 'newAttr' in package 'com.example.library.customview'" ):

<com.library.CustomView        xmlns:android="http://schemas.android.com/apk/res/android"        xmlns:app="http://schemas.android.com/apk/res/com.example.library.customview"        android:id="@+id/myView"        app:newAttr="value" />

Will work:

<com.library.CustomView        xmlns:android="http://schemas.android.com/apk/res/android"        xmlns:app="http://schemas.android.com/apk/res/com.example.customview"        android:id="@+id/myView"        app:newAttr="value" />


Addition to most voted answer.

obtainStyledAttributes()

I want to add some words about obtainStyledAttributes() usage, when we create custom view using android:xxx prdefined attributes. Especially when we use TextAppearance.
As was mentioned in "2. Creating constructors", custom view gets AttributeSet on its creation. Main usage we can see in TextView source code (API 16).

final Resources.Theme theme = context.getTheme();// TextAppearance is inspected first, but let observe it laterTypedArray a = theme.obtainStyledAttributes(            attrs, com.android.internal.R.styleable.TextView, defStyle, 0);int n = a.getIndexCount();for (int i = 0; i < n; i++) {    int attr = a.getIndex(i);    // huge switch with pattern value=a.getXXX(attr) <=> a.getXXX(a.getIndex(i))}a.recycle();

What we can see here?
obtainStyledAttributes(AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes)
Attribute set is processed by theme according to documentation. Attribute values are compiled step by step. First attributes are filled from theme, then values are replaced by values from style, and finally exact values from XML for special view instance replace others.
Array of requested attributes - com.android.internal.R.styleable.TextView
It is an ordinary array of constants. If we are requesting standard attributes, we can build this array manually.

What is not mentioned in documentation - order of result TypedArray elements.
When custom view is declared in attrs.xml, special constants for attribute indexes are generated. And we can extract values this way: a.getString(R.styleable.MyCustomView_android_text). But for manual int[] there are no constants. I suppose, that getXXXValue(arrayIndex) will work fine.

And other question is: "How we can replace internal constants, and request standard attributes?" We can use android.R.attr.* values.

So if we want to use standard TextAppearance attribute in custom view and read its values in constructor, we can modify code from TextView this way:

ColorStateList textColorApp = null;int textSize = 15;int typefaceIndex = -1;int styleIndex = -1;Resources.Theme theme = context.getTheme();TypedArray a = theme.obtainStyledAttributes(attrs, R.styleable.CustomLabel, defStyle, 0);TypedArray appearance = null;int apResourceId = a.getResourceId(R.styleable.CustomLabel_android_textAppearance, -1);a.recycle();if (apResourceId != -1){    appearance =         theme.obtainStyledAttributes(apResourceId, new int[] { android.R.attr.textColor, android.R.attr.textSize,             android.R.attr.typeface, android.R.attr.textStyle });}if (appearance != null){    textColorApp = appearance.getColorStateList(0);    textSize = appearance.getDimensionPixelSize(1, textSize);    typefaceIndex = appearance.getInt(2, -1);    styleIndex = appearance.getInt(3, -1);    appearance.recycle();}

Where CustomLabel is defined:

<declare-styleable name="CustomLabel">    <!-- Label text. -->    <attr name="android:text" />    <!-- Label text color. -->    <attr name="android:textColor" />    <!-- Combined text appearance properties. -->    <attr name="android:textAppearance" /></declare-styleable>

Maybe, I'm mistaken some way, but Android documentation on obtainStyledAttributes() is very poor.

Extending standard UI component

At the same time we can just extend standard UI component, using all its declared attributes.This approach is not so good, because TextView for instance declares a lot of properties. And it will be impossibleto implement full functionality in overriden onMeasure() and onDraw().

But we can sacrifice theoretical wide reusage of custom component. Say "I know exactly what features I will use", anddon't share code with anybody.

Then we can implement constructor CustomComponent(Context, AttributeSet, defStyle). After calling super(...) we will have all attributes parsed and available through getter methods.