I designated the image of the Back button as actionBar().setHomeAsUpIndicator(R.mipmap.ic_launcher_foreground);
. Can I change the size and location of the specified image?
public class MainActivity extends AppCompatActivity {
private DrawerLayout mDrawerLayout;
private Context context = this;
@Override
protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(R.mipmap.ic_launcher_foreground);
mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);