我正在制作Google I/O 2014音乐播放器,并且我在从专辑封面中提取颜色时遇到问题。这是我的相册屏幕类:
package com.animbus.music;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.PorterDuff;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.graphics.Palette;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ImageButton;
import android.widget.ImageView;
import java.security.spec.PSSParameterSpec;
public class albums_activity extends AppCompatActivity {
public Bundle b;
public String AlbumName;
public String AlbumArtist;
public int AlbumArt;
public int PrimaryColor;
public int AccentColor;
public int TitleTextColor;
public int SubtitleTextColor;
public int fabIcon;
public Palette palette;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_albums_activity);
//Get intent data and set it to something easier to handle and use
b = getIntent().getExtras();
AlbumName = b.getString("ALBUM_NAME");
AlbumArtist = b.getString("ALBUM_ARTIST");
AlbumArt = b.getInt("ALBUM_ART");
Drawable AlbumArtDrawable = getDrawable(AlbumArt);
Bitmap albumArt = BitmapFactory.decodeResource(getResources(), AlbumArt);
ImageView albumArtView = (ImageView) findViewById(R.id.albums_activity_albumart);
ImageButton playAll = (ImageButton) findViewById(R.id.play_all_FAB);
//Make sure that the colors aren't null
PrimaryColor = getResources().getColor(R.color.accent);
AccentColor = getResources().getColor(R.color.accent);
TitleTextColor = getResources().getColor(R.color.accent);
SubtitleTextColor = getResources().getColor(R.color.accent);
fabIcon = getResources().getColor(R.color.accent);
//Convert Palette to resources
palette = Palette.from(albumArt).generate();
PrimaryColor = palette.getVibrantSwatch().getRgb();
AccentColor = palette.getLightVibrantSwatch().getRgb();
TitleTextColor = palette.getVibrantSwatch().getTitleTextColor();
SubtitleTextColor = palette.getVibrantSwatch().getBodyTextColor();
fabIcon = palette.getLightVibrantSwatch().getTitleTextColor();
//Toolbar, setting toolbar as Actionbar,Setting the back arrow to be shown, and setting the title to nothing
android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.album_toolbar);
android.support.v7.widget.Toolbar infoToolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.album_info_toolbar);
setSupportActionBar(toolbar);
//noinspection ConstantConditions
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
toolbar.setTitle("");
//Sets the title to the intent's data
infoToolbar.setTitle(AlbumName);
infoToolbar.setSubtitle(AlbumArtist);
//Sets the albumart
albumArtView.setImageResource(AlbumArt);
//Sets the color of the Info Toolbar based on the albumart
infoToolbar.setBackgroundColor(PrimaryColor);
infoToolbar.setTitleTextColor(TitleTextColor);
infoToolbar.setSubtitleTextColor(SubtitleTextColor);
//Sets accent color based on album art
playAll.getBackground().setColorFilter(AccentColor, PorterDuff.Mode.SRC_ATOP);
playAll.getDrawable().setColorFilter(fabIcon,PorterDuff.Mode.SRC_ATOP);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_albums_activity, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
这是我的问题。我有一个带有三个按钮的应用程序,专辑、专辑 Alt 和专辑 Alt 2。仅打开唱片集 alt。其他人抛出:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.animbus.music/com.animbus.music.albums_activity}: java.lang.NullPointerException: Attempt to invoke virtual method 'int android.support.v7.graphics.Palette$Swatch.getRgb()' on a null object reference
并且应用程序崩溃。它说问题出在:
PrimaryColor = palette.getVibrantSwatch().getRgb();
我想可能是因为palette.getVibrantSwatch().getRgb()
等于null
.我不知道,但请帮忙,现在我必须禁用调色板并继续制作应用程序,但请帮助
Palette
没有必要总是返回VibrantSwatch
.在呼叫getRgb()
之前检查null
。
Palette.Swatch vibrantSwatch = palette.getVibrantSwatch();
if(vibrantSwatch != null) {
//get rgb
} else {
//get another swatch
}
您还可以使用 getSwatches()
从调色板获取所有可用的色板。然后,要获得最常用的颜色,请选择具有最大像素填充的色板。您可以通过在色板上调用getPopulation()
来获取像素填充。
调色板可能无法获得与您尝试获取的色板条件匹配的颜色,因此您应该执行检查以确保色板不为空,然后再继续 t
我遇到了同样的问题,我得出了同样的结论,有时palette!!.vibrantSwatch
对某些图像返回 null:
添加详细代码段以供将来参考
Palette.from(bitmap).generate { palette ->
// Use generated instance
val vibrant = palette!!.vibrantSwatch
if (vibrant != null) {
// If we have a vibrant color
// update the title TextView
val mutedColor = palette.getMutedColor(R.attr.colorPrimary);
//mutedColor = palette.vibrantSwatch!!.getRgb()
collapseToolbar.setBackgroundColor(mutedColor)
collapseToolbar.setStatusBarScrimColor(palette.getDarkMutedColor(mutedColor))
collapseToolbar.setContentScrimColor(palette.getMutedColor(mutedColor))
}