Jetpack Compose Text 옆에는 다른 요소가, Text overflow에서는 옆의 다른 요소가 사라진 경우 해결 방법
1904 단어 AndroidJetpack Composetech
결론
Text + Modifier내가 weight 맞혀줄게.
샘플 코드
Row(
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically,
modifier = Modifier
.background(backgroundColor)
.fillMaxWidth()
) {
Text(
text = "hogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehoge",
modifier = Modifier.weight(1F),
)
hogehogeWidget()
}
해설
fillMaxWidth()가 있는 Row에는 두 개의 하위 요소가 있습니다.
왜냐하면 Text의 크기는 안에 있는 String에 따라 달라져요.
Modifier.weight()가 없으면 오버플로우, 텍스 옆 요소는 쫓겨난다.
그래서 Modifier.weight()로 비율 결정하기
다른 요소를 쫓아내지 않고 가로로 배열할 수 있다.
참고 문장
Reference
이 문제에 관하여(Jetpack Compose Text 옆에는 다른 요소가, Text overflow에서는 옆의 다른 요소가 사라진 경우 해결 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/apple_nktn/articles/cdd4bd7fcbbc6f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)