Date regex

PHP

 

person shubham sharmaaccess_time October 18, 2016launch Read More

Open YouTube Intent

 

person shubham sharmaaccess_time October 18, 2016launch Read More

How do I change the android actionbar title and icon

This is very simple to accomplish If you want to change it in code, call:

  And set the values to whatever you please. Or, in the Android manifest XML file:

  To enable the back button in your app use:

  The code should all be placed in your onCreate so […]

person shubham sharmaaccess_time October 15, 2016launch Read More

How to set an onClickListener on an included layout?

Replace findViewById(R.id.includeCallEnd0) with findViewById(R.id.includeCallEnd0).findViewById(R.id.phoneEnd) and it should work because you want to set the click listener on the ImageButton and not the whole layout Use the following function to set the OnClickListener once:

  Use applyListener(rootView, yourOnClickListener);

person shubham sharmaaccess_time October 15, 2016launch Read More