In my actvity, I created a ActionBar, used a back icon, its showing in the app, but on clicking back icon nothing is happening, didn't got the function onnavigationiconclick event working also, below is my code, kindly assist so that on clicking the back icon user can be send to MainActivity --
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_tab1gridlatestvideos);
ActionBar actionBar=getSupportActionBar();
actionBar.setDisplayOptions(actionBar.getDisplayOptions()
| ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setTitle("Latest Videos");
}