Android Studio 中操作栏上的应用徽标未显示
App logo on Action Bar in Android Studio is not showing
Android Studio 未在操作栏上显示应用徽标。
我使用了以下样式:
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
它在我的 XMl 设计中显示徽标,而我 运行 它的应用程序徽标消失了。
这是我的应用程序的输出
部分 material-design 是徽标不再出现在操作栏上 - 但如果您愿意,可以强制将其取回:
show icon in actionbar/toolbar with AppCompat-v7 21
要在 ActionBar 上显示图标,您必须添加:
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setIcon(R.drawable.ic_launcher);
在 onCreate 方法中。
Android Studio 未在操作栏上显示应用徽标。
我使用了以下样式:
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
它在我的 XMl 设计中显示徽标,而我 运行 它的应用程序徽标消失了。
这是我的应用程序的输出
部分 material-design 是徽标不再出现在操作栏上 - 但如果您愿意,可以强制将其取回: show icon in actionbar/toolbar with AppCompat-v7 21
要在 ActionBar 上显示图标,您必须添加:
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setIcon(R.drawable.ic_launcher);
在 onCreate 方法中。