【发布时间】:2014-12-08 09:58:36
【问题描述】:
我对材料设计的按钮样式感到困惑。我想要在附加链接中获得彩色凸起按钮,例如使用部分下的“强制停止”和“卸载”按钮。有可用的样式还是我需要定义它们?
http://www.google.com/design/spec/components/buttons.html#buttons-usage
我找不到默认按钮样式。
例子:
<Button style="@style/PrimaryButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Calculate"
android:id="@+id/button3"
android:layout_below="@+id/editText5"
android:layout_alignEnd="@+id/editText5"
android:enabled="true" />
如果我尝试通过添加来更改按钮的背景颜色
android:background="@color/primary"
所有样式都消失了,例如触摸动画、阴影、圆角等。
【问题讨论】:
-
我这个wii对自定义按钮最有帮助angrytools.com/android/button
标签: android material-design android-button