Common Header in different activities using BaseActivity in android
I want write code once and use in different activities. I have created a Base Activity class for that . Also the header of all the layouts in different activities are same. I have done that with the help of the <include layout > tag. Now the Problem is my BaseActivity code is not running. I am trying this first time se don't have much idea about that. 1.)The BaseActivity code is below : package com.waheguru.app; import android.R.integer; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener;