#android #kotlin #shadow #elevation
Вопрос:
Моя цель — фишки с цветной тенью
так. У меня есть группа микросхем, определенная в xml, и я добавляю микросхемы программно.
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<androidx.constraintlayout.widget.ConstraintLayout
android:background="@drawable/rect"
<androidx.core.widget.NestedScrollView
<androidx.constraintlayout.widget.ConstraintLayout
android:background="@drawable/rect"
android:backgroundTint="@color/white"
android:clipChildren="false"
android:clipToPadding="false">
<com.google.android.material.chip.ChipGroup
android:id="@ id/chipGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="36dp"
android:layout_marginTop="12dp"
android:clipChildren="false"
android:clipToPadding="false"
android:paddingBottom="10dp"
android:background="@color/white"
app:singleLine="false" />
как я добавляю чипсы
@RequiresApi(Build.VERSION_CODES.P)
private fun createCategories(categories: Set<String>) {
for (category in categories) {
val chip = Chip(binding.chipGroup.context)
chip.apply {
text = category.uppercase()
isClickable = true
isCheckable = false
isCloseIconVisible = false
shapeAppearanceModel = shapeAppearanceModel.withCornerSize(12F.toDp())
textAlignment = View.TEXT_ALIGNMENT_CENTER
setTextColor(ContextCompat.getColorStateList(requireContext(), R.color.white))
chipBackgroundColor =
ContextCompat.getColorStateList(requireContext(), R.color.primary_50)
elevation = 5F.toDp()
outlineAmbientShadowColor =
ContextCompat.getColor(requireContext(), R.color.shadow_primary)
outlineSpotShadowColor =
ContextCompat.getColor(requireContext(), R.color.shadow_primary)
}
binding.chipGroup.addView(chip)
}
но layoutInspector показывает мне следующую ситуацию
тени существуют, но они имеют небольшие размеры. что я делаю не так?