I have an activity with a listview. When the user click the item, the item \"viewer\" opens:
List1.setOnItemClickListener(new OnItemClickListener() {
@Ov
If you are using Toolbar, I was facing the same issue. I solved by following these two steps
Toolbar toolbar = findViewById(R.id.second_toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);