is it possible to add my app icon to the right side of the status bar (along side the wifi icon, bluetooth icon, etc)? My app start a service in the background so I want do show my app icon when the service is active.
Thank you
Alessandro
is it possible to add my app icon to the right side of the status bar (along side the wifi icon, bluetooth icon, etc)? My app start a service in the background so I want do show my app icon when the service is active.
Thank you
Alessandro
ActionBar
您可以使用以下方法在(或)右侧显示应用程序图标Toolbar
:
ActionBar actionBar = getSupportActionBar();
// or Toolbar toolbar = getSupportActionBar();
actionBar.setDisplayOptions(actionBar.getDisplayOptions()
| ActionBar.DISPLAY_SHOW_CUSTOM);
ImageView imageView = new ImageView(actionBar.getThemedContext());
imageView.setScaleType(ImageView.ScaleType.CENTER);
imageView.setImageResource(R.drawable.your_image);
ActionBar.LayoutParams layoutParams = new ActionBar.LayoutParams(
ActionBar.LayoutParams.WRAP_CONTENT,
ActionBar.LayoutParams.WRAP_CONTENT, Gravity.RIGHT
| Gravity.CENTER_VERTICAL);
imageView.setLayoutParams(layoutParams);
actionBar.setCustomView(imageView);