Android Material 常用组件详解(一)

贺宏逸
2023-12-01

一、前言

Google I/O 2014 发布了Material Design。希望统一 Android平台设计语言规范。然而再国内的很多产品和设计师并不吃这一套,还是各种仿IOS的UI。而且这些控件使用起来非常方便,多数时候使用它可以满足我们日常开发UI的需求,提高效率。这里就对一些常用的组件做一个总结。
官方Demo:github地址
可以通过这个网站https://material.io/develop/android,去查找要使用的Material components,里边都有使用接入说明。

二、添加依赖

dependencies {
    implementation 'com.google.android.material:material:1.2.1'
  }

三、更换应用主题

需要将应用的主题修改为Material 的主题,不然部分使用Material 控件会出现问题。

Theme.MaterialComponents
Theme.MaterialComponents.NoActionBar
Theme.MaterialComponents.Light
Theme.MaterialComponents.Light.NoActionBar
Theme.MaterialComponents.Light.DarkActionBar
Theme.MaterialComponents.DayNight
Theme.MaterialComponents.DayNight.NoActionBar
Theme.MaterialComponents.DayNight.DarkActionBar
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight">
    <!-- ... -->
</style>

四、 常用组件

Android Material 常用组件详解(二)—— TextInputLayout 使用详解
Android Material 常用组件详解(三)—— SnackBar、FloatingActionButton 使用详解
Android Material 常用组件详解(四)—— SwitchMaterial、Chip、ChipGroup 使用详解
Android Material 常用组件详解(五)—— MaterialButton、MaterialButtonToggleGroup、ShapeableImageView 使用详解
Android Material 常用组件详解(六)—— Progress indicators、Slider 使用详解
Android Material 常用组件详解(七)—— BottomNavigationView 使用详解
Android Material 常用组件详解(八)—— TabLayout 使用详解
Android Material 常用组件详解(九)—— NavigationView 使用详解
Android Material 常用组件详解(十)—— ToolBar、AppBarLayout、CoordinatorLayout、CollapsingToolbarLayout 使用详解

 类似资料: