按钮的定制材料disagne窗框

时间:2018-03-06 13:31:47

标签: android button styles material-design

我需要为我的按钮创建自定义样式并使用材质设计。我有按钮:

        <Button
        android:id="@+id/loginButton"
        style="@style/MyButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/enterText"/>

我在样式和样式v21

中创建类似this的样式
<style name="MyButton" parent="Theme.AppCompat.Light">
    <item name="colorControlHighlight">#e10a0a</item>
    <item name="colorButtonNormal">#48d91b</item>
</style>

enter image description here

但我的按钮看起来像这样:

enter image description here

谁能够解释差异,哪些更好? 1.使用风格。 2.写你自己的drawable?

0 个答案:

没有答案