国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

android Palette調(diào)色板使用詳解

2019-12-12 01:55:44
字體:
供稿:網(wǎng)友

Palette是一個(gè)可以從圖片(Bitmap)中提取顏色的幫助類,可以使UI更加美觀,根據(jù)圖片動(dòng)態(tài)的顯示相應(yīng)的顏色。現(xiàn)在最新的api是在版本22.0.0添加的,本篇文章也是使用的22.0.0的api版本(注意版本之間api的不同)。

這里寫圖片描述

應(yīng)用項(xiàng)目:https://github.com/DingMouRen/PaletteImageView

應(yīng)用中的效果   Demo 效果

這里寫圖片描述     這里寫圖片描述

Palette可以提取的顏色:

  • Vibrant (有活力的)
  • Vibrant dark(有活力的 暗色)
  • Vibrant light(有活力的 亮色)
  • Muted (柔和的)
  • Muted dark(柔和的 暗色)
  • Muted light(柔和的 亮色)

使用方法: module的build.gradle中引用

compile 'com.android.support:palette-v7:25.3.1'

使用步驟:

1.獲取Palette對(duì)象,也就是圖像調(diào)色板

2.獲取從圖像調(diào)色板生成的色樣

3.從色樣中提取相應(yīng)顏色

1.獲取Palette對(duì)象,也就是圖像調(diào)色板

獲取Palette對(duì)象有同步和異步兩種方式,建議使用異步獲取Palette對(duì)象

 // Synchronous Palette p = Palette.from(bitmap).generate(); // Asynchronous Palette.from(bitmap).generate(new PaletteAsyncListener() {   public void onGenerated(Palette p) {     // Use generated instance   } });

2.獲取從圖像調(diào)色板生成的色樣

可以獲取到六種色樣,但是有的時(shí)候獲取不到對(duì)應(yīng)的色樣對(duì)象,必須注意非空判斷。

Palette.Swatch vibrant = palette.getVibrantSwatch();//有活力的Palette.Swatch vibrantDark = palette.getDarkVibrantSwatch();//有活力的,暗色Palette.Swatch vibrantLight = palette.getLightVibrantSwatch();//有活力的,亮色Palette.Swatch muted = palette.getMutedSwatch();//柔和的Palette.Swatch mutedDark = palette.getDarkMutedSwatch();//柔和的,暗色Palette.Swatch mutedLight = palette.getLightMutedSwatch();//柔和的,亮色

3.從色樣中提取相應(yīng)顏色

通過 getRgb() 可以得到最終的顏色值并應(yīng)用到UI中。getBodyTextColor() 和 getTitleTextColor() 可以得到此顏色下文字適合的顏色,這樣很方便我們?cè)O(shè)置文字的顏色,使文字看起來更加舒服。

swatch.getPopulation(): 樣本中的像素?cái)?shù)量swatch.getRgb(): 顏色的RBG值swatch.getHsl(): 顏色的HSL值swatch.getBodyTextColor(): 主體文字的顏色值swatch.getTitleTextColor(): 標(biāo)題文字的顏色值

Demo的代碼中沒有對(duì)獲取到的色樣對(duì)象進(jìn)行非空判斷,注意一定要加上非空判斷

public class MainActivity extends AppCompatActivity {  private static final String TAG = MainActivity.class.getName();  private LinearLayout line1,line2,line3,line4,line5,line6;  private TextView tv1_1,tv1_2,tv2_1,tv2_2,tv3_1,tv3_2,tv4_1,tv4_2,tv5_1,tv5_2,tv6_1,tv6_2;  private List<LinearLayout> bgs = new ArrayList<>();  private List<TextView> bodyTexts = new ArrayList<>();  private List<TextView> titleTexts = new ArrayList<>();  private List<Palette.Swatch> swatchs = new ArrayList<>();  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    ImageView img = (ImageView) findViewById(R.id.img);    initView();    Bitmap bitmap = ((BitmapDrawable)img.getDrawable()).getBitmap();    if (bitmap == null){      return;    }    Palette.from(bitmap).generate(listener);  }  private Palette.PaletteAsyncListener listener = new Palette.PaletteAsyncListener() {    @Override    public void onGenerated(Palette palette) {      if (palette != null){        Palette.Swatch vibrant = palette.getVibrantSwatch();//有活力的        Palette.Swatch vibrantDark = palette.getDarkVibrantSwatch();//有活力的,暗色        Palette.Swatch vibrantLight = palette.getLightVibrantSwatch();//有活力的,亮色        Palette.Swatch muted = palette.getMutedSwatch();//柔和的        Palette.Swatch mutedDark = palette.getDarkMutedSwatch();//柔和的,暗色        Palette.Swatch mutedLight = palette.getLightMutedSwatch();//柔和的,亮色        swatchs.clear();        swatchs.add(vibrant);swatchs.add(vibrantDark);swatchs.add(vibrantLight);        swatchs.add(muted);swatchs.add(mutedDark);swatchs.add(mutedLight);        show();      }    }  };  private void show() {    for (int i = 0; i < 6; i++) {      bgs.get(i).setBackgroundColor(swatchs.get(i).getRgb());      bodyTexts.get(i).setTextColor(swatchs.get(i).getBodyTextColor());      titleTexts.get(i).setTextColor(swatchs.get(i).getTitleTextColor());        }  }  private void initView() {    line1 = (LinearLayout) findViewById(R.id.line1);    line2 = (LinearLayout) findViewById(R.id.line2);    line3 = (LinearLayout) findViewById(R.id.line3);    line4 = (LinearLayout) findViewById(R.id.line4);    line5 = (LinearLayout) findViewById(R.id.line5);    line6 = (LinearLayout) findViewById(R.id.line6);    bgs.clear();    bgs.add(line1);bgs.add(line2);bgs.add(line3);bgs.add(line4);bgs.add(line5);bgs.add(line6);    tv1_1 = (TextView) findViewById(R.id.tv1_1);    tv2_1 = (TextView) findViewById(R.id.tv2_1);    tv3_1 = (TextView) findViewById(R.id.tv3_1);    tv4_1 = (TextView) findViewById(R.id.tv4_1);    tv5_1 = (TextView) findViewById(R.id.tv5_1);    tv6_1 = (TextView) findViewById(R.id.tv6_1);    tv1_2 = (TextView) findViewById(R.id.tv1_2);    tv2_2 = (TextView) findViewById(R.id.tv2_2);    tv3_2 = (TextView) findViewById(R.id.tv3_2);    tv4_2 = (TextView) findViewById(R.id.tv4_2);    tv5_2 = (TextView) findViewById(R.id.tv5_2);    tv6_2 = (TextView) findViewById(R.id.tv6_2);    bodyTexts.clear();titleTexts.clear();    bodyTexts.add(tv1_1);bodyTexts.add(tv2_1);bodyTexts.add(tv3_1);bodyTexts.add(tv4_1);bodyTexts.add(tv5_1);bodyTexts.add(tv6_1);    titleTexts.add(tv1_2);titleTexts.add(tv2_2);titleTexts.add(tv3_2);titleTexts.add(tv4_2);titleTexts.add(tv5_2);titleTexts.add(tv6_2);  }}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 黎川县| 灵寿县| 郯城县| 凉城县| 灵台县| 阿坝| 凌云县| 南靖县| 宜城市| 延安市| 九台市| 广灵县| 连云港市| 襄汾县| 固安县| 青海省| 仁怀市| 五河县| 石狮市| 罗城| 乌苏市| 夏河县| 洛隆县| 上栗县| 瓮安县| 敦化市| 云林县| 汶上县| 蓬安县| 马关县| 西乡县| 项城市| 白朗县| 普格县| 广汉市| 滕州市| 铜梁县| 清水河县| 合水县| 怀安县| 泗洪县|