我需要为我的按钮创建自定义样式并使用材质设计。我有按钮:
<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>
但我的按钮看起来像这样:
谁能够解释差异,哪些更好? 1.使用风格。 2.写你自己的drawable?