Error referencing an inner class View in layout/main.xml

AndroidLayoutView

Android Problem Overview


Grrr...

I create a subclass of view as an inner class in my Activity. Before I simply linked to this view from my activity with:

setContentView(new CustomView(this));

without problems.

Now, however, my view is getting more complex so I am making it part of a FrameLayout so that I can make this the base view and add a Spinner widget on top of it. The problem is, when I do this I get an error:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.grafightscratch.ochemmer/com.grafightscratch.ochemmer.MoleculeTablet}: android.view.InflateException: Binary XML file line #4: Error inflating class com.grafightscratch.ochemmer.MoleculeTablet.MoleculeTabletView
...
Caused by: android.view.InflateException: Binary XML file line #4: Error inflating class com.grafightscratch.ochemmer.MoleculeTablet.MoleculeTabletView
...
Caused by: java.lang.ClassNotFoundException: com.grafightscratch.ochemmer.MoleculeTablet.MoleculeTabletView in loader dalvik.system.PathClassLoader@43b74a28

So- this view worked before when I linked to it directly, but when I tried to add it in the main.xml file as part of a framelayout I got the above error. I also tried putting into a layout with only it being displayed via:

<com.grafightscratch.ochemmer.MoleculeTablet.MoleculeTabletView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/molecule_tablet_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

Nothing works. I keep getting the InflateException/ClassNotFoundException errors. It complains about "line #3" in the binary XML file, and if it is talking about main.xml that is the package declaration which I have triple checked.

EDIT I tried making this view a separate class (ie- not an inner class) and it works. After some searching around I found some posts saying that the xml tag should look like this:

<com.grafightscratch.ochemmer.MoleculeTablet$MoleculeTabletView ...>

Ie, a dollar sign should be used to separate the innerclass from the main class. However, Eclipse barfs on this, calls it an error, and refuses to let me build or deploy with that character there. So now the question becomes: how does one reference a View that is an inner class?

Android Solutions


Solution 1 - Android

For inner classes the syntax becomes:

<view class="com.grafightscratch.ochemmer.MoleculeTablet$MoleculeTabletView" />

The reason is that $ is an illegal character in XML tags.

Solution 2 - Android

I was having the same issue. The syntax in the XML file was correct, however.

What ended up resolving the issue for me was that the inner class needs to be declared as static. For example:

public static class myWebView extends WebView

Solution 3 - Android

for inner class :

<view class="{package}.{ParentClass}${innerClass}" />

and for inner class , you must declare your class :

public static InnerClass

static is require .

Solution 4 - Android

<view xmlns:android="http://schemas.android.com/apk/res/android"
    class="com.example.Myproject.Myactivity$Myview"
     android:layout_width="fill_parent" android:id="@+id/name" android:visibility="visible" android:layout_gravity="bottom" android:layout_height="fill_parent" android:focusableInTouchMode="true"
/>

this code worked for me. When i left out some of the elements like layout_width my program crashed. I also had to make my view class static in order for it to work. In the end It would have been the same if i just took it out of its nest. The android note example uses a nested class.

Solution 5 - Android

Here are some key points to make a custom view inside an inner class...

public static class MainClass {
    ....
    ....
        public class SubClassView extends LinearLayout {
           public SubClassView(Context context, AttributeSet attrs) {
                super(context, attrs);
                .....
           }
    ....
    ....
       }
    }

The layout should be as follows:

<view class = ".MainClass$SubClassView"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:id="@+id/button"/>

Java class

  • static is required
  • constructor with AttributeSet is required (at least one)

XML file

  • view tag (with lower case NOT View) is required
  • class tag with the path to your inner class, using
  • $ instead of "." before your SubClassView name

Solution 6 - Android

You need to specify the fully qualified name of your view class in the XML for inflation to work and View Class to be found by the Runtime System.
Since you have declared your View as inner class of your activity the fully qualified name would be: <your_package_name>.OuterClassName.InnerClassName

Are you sure com.grafightscratch.ochemmer.CustomView is the fully qualified name of your class?

EDIT: Thanks for reminding me of this. When the views are declared as nested classes there is a slight aberration, see Use Custom component of this document.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionIcedDanteView Question on Stackoverflow
Solution 1 - AndroidRomain GuyView Answer on Stackoverflow
Solution 2 - AndroidWhatzit ToyaView Answer on Stackoverflow
Solution 3 - AndroidAdnan Abdollah ZakiView Answer on Stackoverflow
Solution 4 - AndroidjustinView Answer on Stackoverflow
Solution 5 - AndroiddianakarenmsView Answer on Stackoverflow
Solution 6 - AndroidSamuhView Answer on Stackoverflow