Closed5

Android のコンポーネントに影をつける

tkttkt
src/main/res/values/themes.xml
<resources xmlns:tools="http://schemas.android.com/tools">
    <!-- Base application theme. -->
    <style name="Theme.ShadowButton" parent="Theme.MaterialComponents.Light.NoActionBar">
        <!-- shadow -->
        <item name="android:ambientShadowAlpha">0.1</item>
        <item name="android:spotShadowAlpha">0.3</item>
    </style>

</resources>
<item name="android:ambientShadowAlpha">0.3</item>
 <item name="android:spotShadowAlpha">0.3</item>

ここで影の濃さが変更できる

このスクラップは2021/02/03にクローズされました