伙计,我得到了答案,我的一位朋友与我分享了一个链接,该链接解决了我的问题
链接是:
所有活动的相同标题在所有活动上都相同
申请后填写答案:
这是用于为标头提供功能的 BaseActivity 类
abstract public class BaseActivity extends Activity{
ImageView imVBattery,imVWIFI,imVSabaqLogo;
Button btnSettings,btnTheme;
WifiManager wifiManager;
//set resources to all the contols
public void setHeader(){
imVBattery=(ImageView)findViewById(R.id.imVBattery);
imVWIFI=(ImageView)findViewById(R.id.imVWIFI);
imVSabaqLogo=(ImageView)findViewById(R.id.imVSabaqLogo);
btnSettings=(Button)findViewById(R.id.btnSettings);
btnTheme=(Button)findViewById(R.id.btnTheme);
wifiManager= (WifiManager)this.getSystemService(getBaseContext().WIFI_SERVICE);
}
}
这是我扩展这个基础活动的主要课程:
public class Main extends BaseActivity implements OnClickListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.s_main);
//with the help of this i assign all resources to controls of headers
setHeader();
}
}
感谢所有回复并帮助我的人。!