我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android中实现Material3主题

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android中实现Material3主题

Android中实现Material3主题

Material 3是由Google引入的一种设计系统,通过采用一套设计原则、指南和组件,提供统一直观的用户体验。

在本篇文章中,您将学习如何:

  • 在您的Android应用程序中应用Material 3主题。
  • 如何使用Material 3属性应用于您的视图。
  • 如何应用动态着色。

开始

首先需要引入material组件以来:

dependencies {    // ...    implementation 'com.google.android.material:material:1.9.0'}

创建material3主题theme.xml

<style name="Theme.MyAppTheme" parent="Theme.Material3.Light">   <item name="colorPrimary">@color/green</item>   <item name="colorPrimaryVariant">@color/green_dark</item>   <item name="colorOnPrimary">@color/white</item></style>

我们可以通过将它们添加到我们刚创建的主题中,来更改默认颜色的值。在这里,您可以查看 Material 3 的所有角色并决定要覆盖哪种颜色。

https://github.com/material-components/material-components-android/blob/master/docs/theming/Color.md

请注意,所有 Material 3 组件都使用 Material 3 样式,因此如果我们更改主题值,我们的视图将自动受到影响。

应用

AndroidManifest.xml中引入theme

<application    android:allowBackup="true"    android:dataExtractionRules="@xml/data_extraction_rules"    android:fullBackupContent="@xml/backup_rules"    android:icon="@mipmap/ic_launcher"    android:label="@string/app_name"    android:roundIcon="@mipmap/ic_launcher_round"    android:supportsRtl="true"    android:theme="@style/Theme.MyAppTheme"> // change here    <activity        android:name=".MainActivity"        android:exported="true">        <intent-filter>            <action android:name="android.intent.action.MAIN" />            <category android:name="android.intent.category.LAUNCHER" />        </intent-filter>    </activity></application>

下面是主界面布局activity_main.xml,看看效果

<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:id="@+id/container"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingBottom="@dimen/activity_vertical_margin"    tools:context=".MainActivity">    <EditText        android:id="@+id/username"        android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_marginTop="96dp"        android:autofillHints="@string/prompt_email"        android:hint="@string/prompt_email"        android:inputType="textEmailAddress"        android:selectAllOnFocus="true"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent" />    <EditText        android:id="@+id/password"        android:layout_width="0dp"        android:layout_height="wrap_content"        android:layout_marginTop="8dp"        android:autofillHints="@string/prompt_password"        android:hint="@string/prompt_password"        android:imeActionLabel="@string/action_sign_in_short"        android:imeOptions="actionDone"        android:inputType="textPassword"        android:selectAllOnFocus="true"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toBottomOf="@+id/username" />    <Button        android:id="@+id/login"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_gravity="start"        android:layout_marginTop="16dp"        android:layout_marginBottom="64dp"        android:text="@string/action_sign_in"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toBottomOf="@+id/password"        app:layout_constraintVertical_bias="0.2" />androidx.constraintlayout.widget.ConstraintLayout>


请注意,工具栏、按钮和文本的颜色已经改变,现在都使用了我们在Theme.MyAppTheme中定义的相同的绿色。

但是,如果我们能以简单和和谐的方式定义所有Material 3主题的值会怎样呢?这就是Material 3主题创建工具发挥作用的地方。

https://m3.material.io/theme-builder#/custom
主题生成工具
我们可以定义我们想要在应用程序中使用的颜色,并且该工具将使用算法创建一个和谐的主题,以确保主要颜色的完美对比。现在,我们所需要做的就是将主题导出为“Android视图(XML)”。

该工具将导出适用于浅色和深色主题的值,包括所有的颜色。

theme.xml(浅色主题)

<resources>    <style name="Theme.MyAppTheme" parent="Theme.Material3.Light.NoActionBar">        "colorPrimary">@color/md_theme_light_primary        "colorOnPrimary">@color/md_theme_light_onPrimary        "colorPrimaryContainer">@color/md_theme_light_primaryContainer        "colorOnPrimaryContainer">@color/md_theme_light_onPrimaryContainer        "colorSecondary">@color/md_theme_light_secondary        "colorOnSecondary">@color/md_theme_light_onSecondary        "colorSecondaryContainer">@color/md_theme_light_secondaryContainer        "colorOnSecondaryContainer">@color/md_theme_light_onSecondaryContainer              style>resources>

colors.xml

<resources>    <color name="seed">#6750A4color>    <color name="md_theme_light_primary">#6750A4color>    <color name="md_theme_light_onPrimary">#FFFFFFcolor>    <color name="md_theme_light_primaryContainer">#EADDFFcolor>    <color name="md_theme_light_onPrimaryContainer">#21005Dcolor>    <color name="md_theme_light_secondary">#625B71color>    <color name="md_theme_light_onSecondary">#FFFFFFcolor>    <color name="md_theme_light_secondaryContainer">#E8DEF8color>      <! -- [...] a lot of colors here -->resources>

现在app UI效果如下所示:

如果你想更改button的颜色,非常简单

应用动态着色

通过在我们的应用程序类中简单地添加以下行,我们可以根据用户的系统定义的颜色动态更改应用程序的颜色:
MyApplication.kt

class MyApplication : Application() {    override fun onCreate() {        super.onCreate()        DynamicColors.applyToActivitiesIfAvailable(this)    }}

AndroidManifest.xml

<application    android:allowBackup="true"    android:dataExtractionRules="@xml/data_extraction_rules"    android:fullBackupContent="@xml/backup_rules"    android:icon="@mipmap/ic_launcher"    android:label="@string/app_name"    android:roundIcon="@mipmap/ic_launcher_round"    android:supportsRtl="true"    android:name=".MyApplication"     android:theme="@style/Theme.MyAppTheme"> 

以上就是本文全部内容,希望对你学习material3主题有所帮助!

来源地址:https://blog.csdn.net/u011897062/article/details/131451374

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android中实现Material3主题

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android动态布局实现多主题切换

之前做过一个项目(随心壁纸),主要展示过去每期的壁纸主题以及相应的壁纸,而且策划要求,好可以动态变换主题呈现方式,这样用户体验会比较好。嗯,好吧,策划的话,咱们也没法反驳,毕竟这样搞,确实很不错。于是开始去研究这方面的东西。首先,我想到的是
2022-06-06

Android 设置主题实现点击波纹效果的示例

开头先说说大家都知道的Material Design。Material Design:Material Design是Google推出的一个全新的设计语言,它的特点就是拟物扁平化。Material Design包含了很多内容,我大致把它分为
2023-05-30

WinForm中怎么实现主题和皮肤切换

在WinForm中实现主题和皮肤切换通常可以通过以下步骤来实现:创建多个不同主题或皮肤的样式文件,比如XML文件或INI文件等,其中包含不同主题或皮肤的样式信息。在应用程序中创建一个设置窗口或工具栏,用于选择不同的主题或皮肤。在应用程序
WinForm中怎么实现主题和皮肤切换
2024-04-08

RabbitMQ主题模式怎么实现

这篇文章主要讲解了“RabbitMQ主题模式怎么实现”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“RabbitMQ主题模式怎么实现”吧!Springboot RabbitMQ 主题模式生产者
2023-06-26

如何在c#项目中实现一个winform主题

如何在c#项目中实现一个winform主题?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。1、一个接口,需要做主题的控件、窗体都要实现这个接口/// //
2023-06-06

Android仿QQ空间主页面的实现

今天模仿安卓QQ空间,效果如下: 打开程序的启动画面和导航页面我就不做了,大家可以模仿微信的那个做一下,很简单。这次主要做一下主页面的实现,下面是主页面的布局: 代码如下:
2022-06-06

Android中使用PagerSlidingTabStrip实现导航标题的示例

此开源框架官网地址:https://github.com/astuetz/PagerSlidingTabStrip 可以理解为配合ViewPager使用的交互式页面指示器控件。 话不多说,先上效果图:为了演示其中的pstsIndicator
2022-06-06

Vue3项目中实现主题切换真的很简单!!!

换肤能够实现的终极密码是——CSS变量,可以为每个主题设定一组CSS变量,包含这个主题的所有颜色、字体等信息,当需要切换主题时,只需要更改使用的CSS变量组即可。

使用vue怎么实现主题切换

这篇文章给大家介绍使用vue怎么实现主题切换,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。第一种办法:动态组件当主题的路由并没有发生变化,仅是组件内部的样式,功能发生了变化,我们可以将一个组件复制一遍,修改完后,通过懒
2023-06-15

vue怎么实现更换主题功能

这篇文章主要讲解了“vue怎么实现更换主题功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“vue怎么实现更换主题功能”吧!方式一:class切换方式实现:在每个需要更换的页面定义多个cla
2023-07-04

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录