【Android Studio】Materila Designを使用して見た目をリッチにする

参考資料

手順

  1. build.gradle(Project:プロジェクト名)にgoogle()が含まれているかチェック

    1
    2
    3
    4
    5
    allprojects {
    repositories {
    google() <- これが記述してあればOK
    }
    }
  2. build.gradle(Module:app)にライブラリを記述

    <version>の部分は以下のURLを参考にする
    - https://mvnrepository.com/artifact/com.google.android.material/material

    1
    2
    3
    4
    5
    dependencies {
    ...
    implementation 'com.google.android.material:material:<version>'
    ...
    }
  3. 一度ビルドする

  4. styles.xmlを書き換えてみる

    生成したての状態

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    <resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    </style>

    </resources>

    これの<style>ブロックのparentパラメーターを書き換えることで、テーマを変更できる

    1
    <style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">

    このテーマを書き換えることで、<Button><AutoCompleteTextView>の XML コンポーネントをそれぞれ <MaterialButton><MaterialAutoCompleteTextView> に置き換えます。

    他のコンポーネントのテーマを変えるには、XMLに直接記述する必要がある

【Android Studio】Materila Designを使用して見た目をリッチにする

https://blog.djima.net/2021/03/16/【Android-Studio】Materila-Designを使用して見た目をリッチにする/

Author

Daiki Iijima

Posted on

2021-03-16

Updated on

2024-04-17

Licensed under