Android Studio layout editor cannot render custom views

33,008

Solution 1

Custom view components are also supported and shown correctly in IDEA, But since IntelliJ IDEA uses class files from your output directory to render such components, you have to do build->make project on your project first.

enter image description here

reference

Solution 2

Facing the same issue, I had to override the three and four argument constructors:

public View(Context context, AttributeSet attrs, int defStyle) public View(Context context, AttributeSet attrs, int defStyle, int defStyleRes)

Then rebuild the project.

Solution 3

As I found out today, at last, the "Classdef not found" etc. errors during layout rendering are actually misleading. What they really mean is that there is some error during execution of your widget.

The simplest way to find out, where exactly the problem lays, is this:

  1. In your XML layout file replace you custom view class (let's call it "MyFrameLayout" for clarity) with Android stock class ( e.g. with FrameLayout) and make sure that Layout Editor works. Add "tools:..." attributes to allow you to see content, not an empty layout. E.g. if you have EditText widget in your custom view, add this attribute to it, which will be used in Design mode only:

    tools:text="Sample content"
    

("tools: namespace is added by Android Studio automatically)

  1. Return your original class name (e.g. "MyFrameLayout") to the XML layout. Does it work now?

If not:

  1. Copy definition of your custom view to a temporary new class (e.g. "MyFrameLayoutBeforeFix"), for convenience. You will use it for comparison with "MyFrameLayout" class, which you will start modifying now.

  2. Recreate your "MyFrameLayout" class from scratch, using Android Studio, starting with absolute minimum: it should compile. As a result the Java class will contain "extends "FrameLayout" and required constructors/methods e.g. in this case:

    package com.myprojectxxx.view;
    
    import android.content.Context;
    import android.util.AttributeSet;
    import android.widget.FrameLayout;
    
    public class MyFrameLayout  extends FrameLayout {
        public MyFrameLayout(Context context) {
            super(context);
        }
    
        public MyFrameLayout(Context context, AttributeSet attrs) {
            super(context, attrs);
        }
    
        public MyFrameLayout(Context context, AttributeSet attrs, int defStyleAttr) {
            super(context, attrs, defStyleAttr);
        }
    }
    
  3. Make sure that this custom view renders normally. It should, at least in year 2016!

  4. Move code piece by piece from a "MyFrameLayoutBeforeFix" copy to this class, checking that there are no errors at each step...

Above sequence seems obvious but it worked for me. The trick is that Layout Editor starts your class in its own context, and this can cause some unexpected errors in your code, which "works" when started from inside your application...

Another trick is to use isInEditMode() check in your widget's code to skip parts, which may not work in Design view. E.g.:

MyClass myClass = isInEditMode() ? null : MyClass.getInstance();

Solution 4

It might also be because you are using the wrong Theme for rendering your layouts. Make sure you choose the one you are using in your project.

enter image description here

Solution 5

Should be fixed by the following commit.

https://android-review.googlesource.com/#/c/59090/

Share:
33,008
Naetmul
Author by

Naetmul

Updated on February 24, 2021

Comments

  • Naetmul
    Naetmul about 3 years

    In Android Studio, the layout editor cannot preview custom views in xml.

    Very simple example:

    public class MyCustomView extends FrameLayout {
        public MyCustomView(Context context) {
            super(context);
        }
    
        public MyCustomView(Context context, AttributeSet attrs) {
            super(context, attrs);
        }
    
        public MyCustomView(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
        }
    }
    

     

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">
    
        <com.myprojectxxx.view.MyCustomView
            android:layout_width="48dp"
            android:layout_height="48dp" />
    
    </LinearLayout>
    

    Android Studio always says,

    Rendering Problems

    The following classes could not be found:

    • com.myprojectxxx.view.MyCustomView (Fix Build Path, Create Class)

    Tip: Try to build the project

    Of course, I HAVE that class. If I click "Create Class", it complains that the same class already exists. If I rebuild that project, nothing changes.

    And, yes, the project works very well on my Android device. Also, it is rendered very well in Eclipse ADT. However, in Android Studio, it always says that "CLASSES COULD NOT BE FOUND."

    Android Studio does not have the ability to preview a xml file with custom views? What's wrong with this?