我正在使用调色板库来挑选主色。我的样本给出了正确的TitleTextColor但没有给出RGB颜色。我使用rgb颜色来应用线性布局的背景
Bitmap bitmap = BitmapCompress.decodeBitmapFromResource(getResources(), R.drawable.mihawk, 360, 360);
Palette p = Palette.from(bitmap).generate();
Palette.Swatch vibrantSwatch = p.getDominantSwatch();
LinearLayout top;
top = findViewById(R.id.wallpaperLinearLayoutTop);
top.setBackgroundColor(vibrantSwatch.getRgb());
这是Xml
<LinearLayout
android:id="@+id/wallpaperLinearLayoutTop"
android:layout_width="match_parent"
android:layout_height="64dp"
android:alpha="0.85"
android:orientation="horizontal">