Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom View not inflating

I am trying to create my custom view through xml, but the screen does not show my view, s it is not inflating. My custom view xml is as:

 <?xml version="1.0" encoding="utf-8"?>
<ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/profileSwitcher"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#FFFFFF" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/imgAdvertise"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@android:drawable/btn_minus" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal" >

        <TextView
            android:id="@+id/txtAdvertise"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:text="asdas" />
    </LinearLayout>

</ViewSwitcher>

I have my custom View class as:

public class MyCustomView extends View{

    TextView textAdvertise;
    ImageView imageAdvertise;
    View view;
    ViewSwitcher switcher ;

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub

        LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (layoutInflater != null) {
            view = layoutInflater.inflate(R.layout.main, null);

        }

        initialize();
    }

    public void initialize() {
        // TODO Auto-generated method stub

        textAdvertise = (TextView) view.findViewById(R.id.txtAdvertise);
        imageAdvertise = (ImageView) view.findViewById(R.id.imgAdvertise);
        switcher = (ViewSwitcher) view.findViewById(R.id.profileSwitcher);
        startAnimation();

    }

    public void startAnimation() {
        // TODO Auto-generated method stub

        new Thread() {
            public void run() {

                for (;;) {
                    try {

                        Thread.sleep(2000);
                        hRefresh.sendEmptyMessage(5);
                    } catch (Exception e) {
                    }
                }
            }
        }.start();
    }

    Handler hRefresh = new Handler() {
        public void handleMessage(Message msg) {
            switch (msg.what) {
            case 5:
                switcher.showNext();
                // To go back to the first view, use switcher.showPrevious()
                break;
            default:
                break;
            }
        }
    };

}

and in my base xml layout where I have to show the View, is one button and and my View as:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<Button
    android:id="@+id/button1"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:text="Button" 
    android:layout_weight="1"/>

<com.example.viewswitcher.MyCustomView 
    android:id="@+id/MyView"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"

    />

Can anyone please tell me what it is going wrong?

like image 926
NullPointerException Avatar asked May 08 '12 06:05

NullPointerException


2 Answers

You will see nothing because MyCustomView doesn't have any content as you wrote it. First of all I would use one of the ViewGroups children instead of View(like LinearLayout, RelativeLayout etc):

public class MyCustomView extends LinearLayout {

    TextView textAdvertise;
    ImageView imageAdvertise;
    View view;
    ViewSwitcher switcher ;

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context);
    }

    public MyCustomView(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        if (layoutInflater != null) {
            view = layoutInflater.inflate(R.layout.main, this, true);
        }
        initialize();
    }

     public MyCustomView(Context context, AttributeSet attrs, int theme) {
         super(context, attrs, theme);
     }
// ...
like image 80
user Avatar answered Oct 01 '22 01:10

user


Use this to inflate your layout. Edit

  View headerView = View.inflate(this, R.layout.layout_name, null);

This will return the parent layout of your xml file then you can directly use it or you can find any other view by using

Edit

headerView.findViewById(R.id.view_id);

hope it will work

like image 22
Bharat Sharma Avatar answered Oct 01 '22 02:10

Bharat Sharma