how to know when view has inflated using the onFinishInflate
I want to know when my TabActivity has inflated so i tried this code @Override protected void onFinishInflate() { super.onFinishInflate(); } i get the error: must override or implement a supertype method I cannot understand why that is not working in the TabActivity. Can Anyone explane this? package com.carlsberg.bungle.history; import com.carlsberg.bungle.Consts; import com.carlsberg.bungle.R; import android.app.TabActivity; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.Window; import android.widget.TabHost