一段时间后徽标从工具栏中消失
Logo disappear from toolbar after while
当我安装我的应用程序时,一切似乎都正常。但是当我 return 一段时间后,我的工具栏中没有徽标。只有黑色。在 Android 4.4 中没问题,但我的 Galaxy S4 升级到 Android 5.0.1 并且我的应用程序中存在此错误。不知道为什么吗?
v21\styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/ColorPrimary</item>
<item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
<item name="colorAccent">@color/ColorAccent</item>
<item name="windowActionModeOverlay">true</item>
<item name="android:statusBarColor">@color/ColorPrimaryDark</item>
</style>
toolbar.xml
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/ColorPrimary"
app:titleTextAppearance="@style/ToolbarTitle"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:elevation="@dimen/toolbar_elevation">
<ImageView
android:id="@+id/tool_logo"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:contentDescription="@string/img_logo"
android:src="@drawable/logo" />
</android.support.v7.widget.Toolbar>
同样在抽屉 header 中(工具栏或抽屉 header 有时是黑色的...不是两者都是)
drawer_header.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@color/ColorPrimary">
<ImageView
android:id="@+id/navHead"
android:layout_width="match_parent"
android:layout_height="@dimen/drawer_header_height"
android:adjustViewBounds="true"
android:src="@drawable/logo"
android:contentDescription="@string/img_logo" />
</LinearLayout>
我的 MainOverview.java
没什么特别的
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_list);
mDrawerList = (ListView)findViewById(R.id.navList);
final LayoutInflater layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View drawerHeaderView = layoutInflater.inflate(R.layout.drawer_header, null);
mDrawerList.addHeaderView(drawerHeaderView);
toolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);
我找到了解决方案。黑色图形显示在操作栏中,因为文件夹 "drawable" 中有一个大尺寸 logo.png。徽标必须在 drawable-mdpi/hdpi/etc 中。大小相等(48dp/56dp 高度,取决于 android 版本)。我不知道为什么 Android Galaxy S4 上的 5.0.1 不能像模拟器或真正的 4.4.2 设备那样正确缩小图片。不过现在好像还可以。
当我安装我的应用程序时,一切似乎都正常。但是当我 return 一段时间后,我的工具栏中没有徽标。只有黑色。在 Android 4.4 中没问题,但我的 Galaxy S4 升级到 Android 5.0.1 并且我的应用程序中存在此错误。不知道为什么吗?
v21\styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/ColorPrimary</item>
<item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
<item name="colorAccent">@color/ColorAccent</item>
<item name="windowActionModeOverlay">true</item>
<item name="android:statusBarColor">@color/ColorPrimaryDark</item>
</style>
toolbar.xml
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/ColorPrimary"
app:titleTextAppearance="@style/ToolbarTitle"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:elevation="@dimen/toolbar_elevation">
<ImageView
android:id="@+id/tool_logo"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:adjustViewBounds="true"
android:contentDescription="@string/img_logo"
android:src="@drawable/logo" />
</android.support.v7.widget.Toolbar>
同样在抽屉 header 中(工具栏或抽屉 header 有时是黑色的...不是两者都是)
drawer_header.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@color/ColorPrimary">
<ImageView
android:id="@+id/navHead"
android:layout_width="match_parent"
android:layout_height="@dimen/drawer_header_height"
android:adjustViewBounds="true"
android:src="@drawable/logo"
android:contentDescription="@string/img_logo" />
</LinearLayout>
我的 MainOverview.java
没什么特别的protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_list);
mDrawerList = (ListView)findViewById(R.id.navList);
final LayoutInflater layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View drawerHeaderView = layoutInflater.inflate(R.layout.drawer_header, null);
mDrawerList.addHeaderView(drawerHeaderView);
toolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeButtonEnabled(true);
我找到了解决方案。黑色图形显示在操作栏中,因为文件夹 "drawable" 中有一个大尺寸 logo.png。徽标必须在 drawable-mdpi/hdpi/etc 中。大小相等(48dp/56dp 高度,取决于 android 版本)。我不知道为什么 Android Galaxy S4 上的 5.0.1 不能像模拟器或真正的 4.4.2 设备那样正确缩小图片。不过现在好像还可以。