Я не могу раскрасить один текст из моего списка при нажатии Jetpack Compose (одиночное выделение)

У меня есть строковый список текстов, когда я нажимаю на один из них, я должен окрашивать его в один цвет, в настоящее время моя реализация окрашивает все тексты, что я делаю неправильно?

      var isPressed by remember { mutableStateOf(false) }
    val buttonColor: Color by animateColorAsState(
        targetValue = when (isPressed) {
            true -> FreshGreen
            false -> PastelPeach
        },
        animationSpec = tween()
    )

LazyRow(
        modifier = modifier,
        horizontalArrangement = Arrangement.spacedBy(25.dp)
    ) {
        items(filterList) { filterName ->
            Text(
                text = filterName,
                modifier = Modifier
                    .background(shape = RoundedCornerShape(24.dp), color = buttonColor)
                    .padding(horizontal = 16.dp, vertical = 8.dp)
                    .clickable(
                        interactionSource = remember { MutableInteractionSource() },
                        indication = null
                    ) {
                        isPressed = !isPressed
                        onFilterClick(filterName)
                    }
            )
        }
    }

3 ответа

Вы используете одно и то же состояние() для всех элементов.
В качестве альтернативы ответу zy вы можете просто переместитьisPressedдекларация внутриitemsблокировать:

      LazyRow(
    horizontalArrangement = Arrangement.spacedBy(25.dp)
) {
    items(itemsList) { filterName->

        var isPressed by remember { mutableStateOf(false) }

        val buttonColor: Color by animateColorAsState(
            targetValue = when (isPressed) {
                true -> Color.Green
                false -> Color.Red
            },
            animationSpec = tween()
        )
        
        Text(
          //your code
        )
    }
}

Для тех, кто хочет оставить выбранным только один элемент за раз, вот способ, которым я пошел.

      @Composable
fun BrandCategoryFilterSection(
    modifier: Modifier,
    uiState: BrandFilterUiState,
    onBrandCategoryClick: (String) -> Unit
) {
    var selectedIndex by remember { mutableStateOf(-1) }

    LazyRow(
        modifier = modifier,
        horizontalArrangement = Arrangement.spacedBy(25.dp)
    ) {
        itemsIndexed(uiState.categoryList) { index, categoryName ->
            CategoryText(
                categoryName = categoryName,
                isSelected = index == selectedIndex,
                onBrandCategoryClick = {
                    selectedIndex = index
                    onBrandCategoryClick(it)
                }
            )
        }
    }
}

@Composable
private fun CategoryText(categoryName: String, onBrandCategoryClick: (String) -> Unit, isSelected: Boolean) {
    
    val buttonColor: Color by animateColorAsState(
        targetValue = when (isSelected) {
            true -> FreshGreen
            false -> PastelPeach
        },
        animationSpec = tween()
    )

    Text(
        text = categoryName,
        modifier = Modifier
            .background(shape = RoundedCornerShape(24.dp), color = buttonColor)
            .padding(horizontal = 16.dp, vertical = 8.dp)
            .clickable(
                interactionSource = remember { MutableInteractionSource() },
                indication = null
            ) {
                onBrandCategoryClick(categoryName)
            }
    )
}

Я изменил ваш код, где я снизил анимацию и состояние нажатия, чтобы родительский компонуемый объект не страдал от своего собственногоre-composition

      @Composable
fun MyScreen(
    modifier: Modifier = Modifier,
    filterList: SnapshotStateList<String>
) {
    LazyRow(
        modifier = modifier,
        horizontalArrangement = Arrangement.spacedBy(25.dp)
    ) {

        items(filterList) { filterName ->
            FilterText(
                filterName
            )
        }
    }
}

@Composable
fun FilterText(
    filter: String
) {

    var isPressed by remember { mutableStateOf(false) }
    val buttonColor: Color by animateColorAsState(
        targetValue = when (isPressed) {
            true -> Color.Blue
            false -> Color.Green
        },
        animationSpec = tween()
    )

    Text(
        text = filter,
        modifier = Modifier
            .background(shape = RoundedCornerShape(24.dp), color = buttonColor)
            .padding(horizontal = 16.dp, vertical = 8.dp)
            .clickable {
                isPressed = !isPressed
            }
    )
}

Другие вопросы по тегам