Android中使用Palette让你的页面UI优雅起来

文章目录

    • 1. 什么是Palette
    • 2. 引入Palette
    • 3. 使用 Palette
      • 3.1 同步方式
      • 3.2 异步方式
      • 3.3 获取色调值
    • 4. 举例
      • 4.1 布局文件 activity_palette_list.xml ⬇️
      • 4.2 Activity:PaletteListActivity⬇️
      • 4.3 列表Adapter:PaletteListAdapter ⬇️
      • 4.4 列表item布局:list_item_palette.xml ⬇️
      • 4.5 效果

1. 什么是Palette

Palette 翻译过来是调色板的意思,在android开发中,它的作用是自动分析一张图片中的色调,并且提取出合适的颜色,来帮我们进行动态配色
所谓的动态配色,是说根据页面中不同图片的色调,自动为其他部分的View设置背景色,以达到视觉上的协调,美观。

比如,根据页面中图片的色调,改变ToolBar的背景色,状态栏的颜色;根据卡片图片的色调,改变图片上文字的背景色等场景。

2. 引入Palette

在 moudle级别的 build.gradle 中添加 palette 的依赖

// java 工程
implementation 'androidx.palette:palette:1.0.0'// kotlin 工程
implementation 'androidx.palette:palette-ktx:1.0.0'

3. 使用 Palette

首先是获取 palette 对象。根据Bitmap,我们可以

3.1 同步方式

val bitmap = BitmapFactory.decodeResource(resources, R.drawable.test1)
val paletteBuilder = Palette.from(bitmap)
val palette = paletteBuilder.generate()

3.2 异步方式

val bitmap = BitmapFactory.decodeResource(resources, R.drawable.test1)
val paletteBuilder = Palette.from(bitmap)
paletteBuilder.generate(object : PaletteAsyncListener {override fun onGenerated(palette: Palette?) {// 得到了 palette}
})
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.test);
// 同步
Palette.Builder builder = Palette.from(bitmap);
Palette palette=builder.generate();
// 异步
builder.generate(bitmap, new Palette.PaletteAsyncListener() {@Overridepublic void onGenerated(Palette palette) {}
}

3.3 获取色调值

获取了 Palette 对象后,就可以调用它的各种方法,获取各种我们需要的色调值了。

Palette.from(it).generate(object : PaletteAsyncListener{override fun onGenerated(palette: Palette?) {palette ?: return// 获取到柔和的深色的颜色, Color.GREEN是获取不到时的默认颜色val darkMutedColor = palette.getDarkMutedColor(Color.GREEN)// 获取到柔和的明亮的颜色val lightMutedColor = palette.getLightMutedColor(Color.GREEN)// 获取到活跃的深色的颜色val darkVibrantColor = palette.getDarkVibrantColor(Color.GREEN)// 获取到活跃的明亮的颜色val lightVibrantColor = palette.getLightVibrantColor(Color.GREEN)// 获取图片中一个最柔和的颜色val mutedColor = palette.getMutedColor(Color.GREEN)// 获取图片中最活跃的颜色,也可以说整个图片出现最多的颜色val vibrantColor = palette.getVibrantColor(Color.GREEN)// 获取某种特性颜色的样品val lightVibrantSwatch = palette.vibrantSwatch// 谷歌推荐的:图片的整体的颜色rgb的混合值---主色调val rgb = lightVibrantSwatch?.rgb// 谷歌推荐:图片中间的文字颜色val bodyTextColor = lightVibrantSwatch?.bodyTextColor// 谷歌推荐:作为标题的颜色(有一定的和图片的对比度的颜色值)val titleTextColor = lightVibrantSwatch?.titleTextColor// 颜色向量val hsl = lightVibrantSwatch?.hsl// 分析该颜色在图片中所占的像素多少值val population = lightVibrantSwatch?.population}})

4. 举例

用 palette 做一个优雅的卡片列表。

4.1 布局文件 activity_palette_list.xml ⬇️

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".palette.PaletteListActivity"><androidx.recyclerview.widget.RecyclerViewandroid:id="@+id/rcv_palette"android:layout_width="match_parent"android:layout_height="match_parent" /></androidx.constraintlayout.widget.ConstraintLayout>

4.2 Activity:PaletteListActivity⬇️

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import androidx.recyclerview.widget.GridLayoutManager
import com.example.mytest.R
import com.example.mytest.databinding.ActivityPaletteListBindingclass PaletteListActivity : AppCompatActivity() {override fun onCreate(savedInstanceState: Bundle?) {super.onCreate(savedInstanceState)val binding = ActivityPaletteListBinding.inflate(layoutInflater)setContentView(binding.root)val dataList = mutableListOf<PaletteBean>(PaletteBean(R.drawable.test1, "标题1"),PaletteBean(R.drawable.test2, "hello2"),PaletteBean(R.drawable.test3, "hello3"),PaletteBean(R.drawable.test4, "hello4"),PaletteBean(R.drawable.test1, "标题1"),PaletteBean(R.drawable.test2, "hello2"),PaletteBean(R.drawable.test3, "hello3"),PaletteBean(R.drawable.test4, "hello4"),PaletteBean(R.drawable.test1, "标题1"),PaletteBean(R.drawable.test2, "hello2"),PaletteBean(R.drawable.test3, "hello3"),PaletteBean(R.drawable.test4, "hello4"),)binding.rcvPalette.apply {adapter = PaletteListAdapter(dataList)layoutManager = GridLayoutManager(this@PaletteListActivity, 2)}}
}

4.3 列表Adapter:PaletteListAdapter ⬇️

import android.graphics.Color
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.core.graphics.drawable.toBitmapOrNull
import androidx.palette.graphics.Palette
import androidx.recyclerview.widget.RecyclerView
import com.example.mytest.databinding.ListItemPaletteBinding
import kotlin.math.roundToIntclass PaletteListAdapter(private val dataList: MutableList<PaletteBean> = mutableListOf()) :RecyclerView.Adapter<PaletteListAdapter.MyViewHolder>() {fun update(lDataList: List<PaletteBean>) {dataList.clear()dataList.addAll(lDataList)notifyDataSetChanged()}class MyViewHolder(val binding: ListItemPaletteBinding) :RecyclerView.ViewHolder(binding.root) {fun bind(data: PaletteBean?) {data ?: returnbinding.ivCover.setImageResource(data.imgId)binding.tvContent.text = data.titleval bitmap = binding.ivCover.drawable.toBitmapOrNull()bitmap?.let {Palette.from(it).generate { palette ->val titleColor = palette?.vibrantSwatch?.titleTextColorval bg = getTranslucentColor(0.5f, palette?.vibrantSwatch?.rgb!!)binding.tvContent.setTextColor(titleColor!!)binding.tvContent.setBackgroundColor(bg)}}}/*** 获取指定透明度的颜色值*/private fun getTranslucentColor(percent: Float, rgb: Int): Int {val blue = Color.blue(rgb)val green = Color.green(rgb)val red = Color.red(rgb)var alpha = Color.alpha(rgb)alpha = (alpha * percent).roundToInt()return Color.argb(alpha, red, green, blue)}}override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): MyViewHolder {val binding =ListItemPaletteBinding.inflate(LayoutInflater.from(parent.context), parent, false)return MyViewHolder(binding)}override fun getItemCount(): Int {return dataList?.size ?: 0}override fun onBindViewHolder(holder: MyViewHolder, position: Int) {holder.bind(dataList?.get(position))}
}

4.4 列表item布局:list_item_palette.xml ⬇️

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView 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="150dp"app:cardCornerRadius="4dp"app:cardElevation="1dp"app:cardPreventCornerOverlap="false"app:cardUseCompatPadding="true"><androidx.constraintlayout.widget.ConstraintLayoutandroid:layout_width="match_parent"android:layout_height="150dp"><ImageViewandroid:id="@+id/iv_cover"android:layout_width="match_parent"android:layout_height="match_parent"android:scaleType="centerCrop"android:src="@drawable/test1"app:layout_constraintBottom_toBottomOf="parent"app:layout_constraintStart_toStartOf="parent"app:layout_constraintTop_toTopOf="parent" /><TextViewandroid:id="@+id/tv_content"android:layout_width="match_parent"android:layout_height="50dp"android:gravity="center"android:text="你好啊"app:layout_constraintBottom_toBottomOf="parent"app:layout_constraintEnd_toEndOf="parent"app:layout_constraintStart_toStartOf="parent" /></androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>

4.5 效果

请添加图片描述

怎么样?这样卡片底部的蒙层就合图片的主色调一致,文字颜色也是相对和谐的,整体看起来就优雅多了吧。

如果这篇文章对你有用的话,欢迎支持哦~感谢!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/703786.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

购买商用ssl证书并在windows服务器IIS上配置https域名(案例为阿里云)

阿里云、华为云等各路云都有ssl证书购买&#xff0c;价格相差不大&#xff0c;操作也都差不多&#xff0c;请自行选择。 本文以阿里云操作为案例。 购买SSL证书 点击购买 付款买入 注意&#xff0c;如果自己搞起来有问题&#xff0c;阿里购买的时候建议选择申请协助服务。购买…

Mysql数据库二进制日志导致磁盘满了处理过程

数据库的二进制日志是数据库管理系统&#xff08;DBMS&#xff09;用来记录所有对数据库进行修改的操作的记录。这种日志对于数据库的备份、恢复、复制和审计等操作至关重要。 以MySQL数据库为例&#xff0c;二进制日志&#xff08;Binary Log&#xff09;记录了所有更改数据的…

小白必看:新手学编程必会的100个代码

前言 我记得刚开始接触编程的时候&#xff0c;觉得太难了。 也很好奇&#xff0c;写代码的那些人也太厉害了吧&#xff1f;全是英文的&#xff0c;他们的英文水平一定很好吧&#xff1f; 他们是怎么记住这么多代码格式的&#xff1f;而且错了一个标点符号&#xff0c;整个程…

[图解]SysML和EA建模住宅安全系统-03

1 00:00:00,490 --> 00:00:01,180 怎么加 2 00:00:01,570 --> 00:00:04,380 我们来看&#xff0c;这是刚才那个图 3 00:00:05,200 --> 00:00:06,390 17.7 4 00:00:07,150 --> 00:00:08,260 我们同样在这里加 5 00:00:08,430 --> 00:00:10,100 同样在这个下面…

so-vits-svc:AI翻唱,语音克隆

前言 这个项目是为了让开发者最喜欢的动画角色唱歌而开发的&#xff0c;任何涉及真人的东西都与开发者的意图背道而驰。 项目地址&#xff1a;https://github.com/svc-develop-team/so-vits-svc/blob/4.1-Stable/README_zh_CN.md 安装 可以自行配置&#xff0c;应该也不难 …

vue网页端控制台展示独有标记

效果展示 实现步骤 1. 新建js文件 定义一个类 用于提供控制台打印日志显示样式的方法 src\libs\util.log.js class Logger {// 定义静态方法static typeColor(type "default") {let color "";switch (type) {case "default":color "#3…

WebLogic SSL应用

SSL 安全套接字层(SSL)是通过在客户端和Web服务器端之间进行身份验证,并对双方交换的数据进行加密,从而提供安全连接。 验证类型: 单向:客户端验证Web服务器端证书 双向:客户端验证Web服务器证书, Web服务器验证客户端证书 Weblogic Server12c 支持 SSL 3.0 和 TLS1.0 …

C++列表实现

文章目录 一、listView相关内容主要思想实例全部代码 二、QTreeView 一、listView 相关内容 QAbstractItemModel&#xff1a;一个抽象的类&#xff0c;为数据项模型提供抽象的接口&#xff0c;常见的的数据模型列如&#xff1a;QStringListModel,QStandardItemMode,QDirModel…

相约蓉城 | 全视通邀您参加 CHCC 2024第25届全国医院建设大会

第25届全国医院建设大会暨国际医院建设、装备及管理展览会&#xff08;CHCC2024&#xff09;&#xff0c;将于5月17日-19日在成都中国西部国际博览城盛大启幕。 全视通将携智慧病房、智慧门诊、智慧手术室、智慧后勤、智慧康养等产品方案亮相11号厅K05展位&#xff0c;期待与您…

【Win】如何在Windows隐藏安装的程序

由于维护人员或用户可能无意中通过“程序和功能”选项删除对业务至关重要的软件&#xff0c;这导致服务中断或安全风险。为了防止此类情况发生&#xff0c;确保只有授权的用户才能访问和管理系统中的程序。为了实现这一目标&#xff0c;我们将探讨如何在Windows操作系统中隐藏特…

AI预测体彩排3采取878定位大底=23策略+杀断组+杀组选+杀和尾+杀和值012缩水测试5月15日预测第1弹

昨天与一位玩排3的彩友通过视频直播的形式聊了下&#xff0c;受益匪浅&#xff0c;给我提供了一些比较有价值的建议&#xff0c;比如&#xff0c;对于878的定位策略&#xff0c;方向是没问题的&#xff0c;但是8783的话&#xff0c;还是缺乏一定的命中率&#xff0c;如果87823&…

掏心经验分享,软考中项0基础入门篇!

想备考下半年中项&#xff08;系统集成项目管理工程师&#xff09;的朋友&#xff0c;不知道如何了解软考中项&#xff0c;今天给大家整理一篇关于我自己在备考软考时的一些考量和踩过的一些坑。&#xff08;无广&#xff0c;放心看&#xff09; 很多小伙伴总是听大家说软考中…