首页 > 解决方案 > 如何使用 Imageview 颜色更改应用栏颜色?

问题描述

我有一个通知日志应用程序,如何使用相同颜色的应用程序图标更改应用程序栏颜色。

例如,我想从图标图像颜色更改应用栏颜色

在此处输入图像描述

我得到这样的图标

  ImageView icon = findViewById(R.id.icon);
                icon.setImageDrawable(Util.getAppIconFromPackage(this, packageName));

那么如何从图像视图中获取颜色并将其更改为应用栏颜色

标签: javaandroidcolors

解决方案


SOLVED !!

Add This Gradle

    implementation 'com.android.support:palette-v7:23.1.1'

And Add This Code In Activity

 private void geticoncolor() {
        ImageView icon = findViewById(R.id.icon);
        icon.setImageDrawable(Util.getAppIconFromPackage(this, packageName));

       //Bitmap bitmap = BitmapFactory.decodeResource(getResources(), geticoncolor());

        Bitmap bitmap3 = ((BitmapDrawable)icon.getDrawable()).getBitmap();

        BitmapDrawable drawable = (BitmapDrawable) icon.getDrawable();
        Bitmap bitmap2 = drawable.getBitmap();

        Palette.from(bitmap3).generate(new Palette.PaletteAsyncListener() {
            @Override
            public void onGenerated(Palette palette) {
                //work with the palette here
                int defaultValue = 0x000000;
                int vibrant = palette.getVibrantColor(defaultValue);
                int vibrantLight = palette.getLightVibrantColor(defaultValue);
                int vibrantDark = palette.getDarkVibrantColor(defaultValue);
                int muted = palette.getMutedColor(defaultValue);
                int mutedLight = palette.getLightMutedColor(defaultValue);
                int mutedDark = palette.getDarkMutedColor(defaultValue);

                ActionBar actionBar = getSupportActionBar();
                actionBar.setBackgroundDrawable(new ColorDrawable(vibrant));
               // actionBar.setTitle(Html.fromHtml("<font color='#000099'>Hello World</font>"));

               // Toast.makeText(DetailsActivity.this, ""+vibrant+vibrantDark+mutedLight+mutedDark, Toast.LENGTH_SHORT).show();
                /*vibrantView.setBackgroundColor(vibrant);
                vibrantLightView.setBackgroundColor(vibrantLight);
                vibrantDarkView.setBackgroundColor(vibrantDark);
                mutedView.setBackgroundColor(muted);
                mutedLightView.setBackgroundColor(mutedLight);
                mutedDarkView.setBackgroundColor(mutedDark);*/
            }
        });


    }

推荐阅读