我正在尝试在两个特定的 MaterialTextView 上实现一个带有彩色背景的简单圆角布局。代码如下:
<com.google.android.material.textview.MaterialTextView
android:id="@+id/lblStartTime"
style="@style/customTimeRangePickerStyle"
android:layout_width="68dp"
android:layout_height="wrap_content"
android:padding="8dp"
android:textAlignment="center"
android:textSize="18sp" />
<style name="customTimeRangePickerStyle" parent="">
<item name="shapeAppearanceOverlay">@style/customTimeRangePickerDay</item>
</style>
<style name="customTimeRangePickerDay" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">4dp</item>
<item name="strokeWidth">1dp</item>
<item name="strokeColor">@color/Cor2</item>
<item name="android:background">@color/fieldBackground</item>
</style>
任何提示为什么这不起作用?生成的 textview 不显示边框或背景颜色。
谢谢!