[go: nahoru, domu]

blob: fdc7f9a0338653722f9a383e155e9bf0d11c1e8a [file] [log] [blame]
/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.compose.foundation.text.demos
import androidx.compose.Composable
import androidx.compose.foundation.BaseTextField
import androidx.compose.foundation.ExperimentalFoundationApi
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.runtime.savedinstancestate.savedInstanceState
import androidx.compose.ui.unit.Constraints
import androidx.ui.core.Layout
import androidx.ui.core.Modifier
import androidx.ui.core.clipToBounds
import androidx.compose.ui.unit.constrainWidth
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.input.TextFieldValue
import androidx.compose.ui.text.TextStyle
import androidx.compose.ui.unit.dp
import kotlin.math.min
@Composable
fun TailFollowingTextFieldDemo() {
Column {
val hstate = savedInstanceState(saver = TextFieldValue.Saver) {
TextFieldValue("abc def ghi jkl mno pqr stu vwx yz")
}
HorizontalTailFollowingTextField(
value = hstate.value,
onValueChange = { hstate.value = it },
modifier = Modifier
.padding(20.dp)
.fillMaxWidth()
.background(color = Color.Gray)
.clipToBounds()
)
val vstate = savedInstanceState(saver = TextFieldValue.Saver) {
TextFieldValue("a\nb\nc\nd\ne\nf\ng\nh")
}
VerticalTailFollowintTextField(
value = vstate.value,
onValueChange = { vstate.value = it },
modifier = Modifier
.padding(20.dp)
.fillMaxWidth()
.height(120.dp)
.background(Color.Gray)
.clipToBounds()
)
}
}
@Composable
@OptIn(ExperimentalFoundationApi::class)
private fun HorizontalTailFollowingTextField(
value: TextFieldValue,
onValueChange: (TextFieldValue) -> Unit,
modifier: Modifier,
textStyle: TextStyle = TextStyle(fontSize = fontSize8)
) {
Layout(
children = @Composable {
BaseTextField(
value = value,
onValueChange = onValueChange,
textStyle = textStyle
)
},
modifier = modifier
) { measurable, constraints ->
val p = measurable[0].measure(
Constraints(
minWidth = 0,
maxWidth = Constraints.Infinity,
minHeight = constraints.minHeight,
maxHeight = constraints.maxHeight
)
)
val width = constraints.constrainWidth(p.width)
val xOffset = min(0, constraints.maxWidth - p.width)
layout(width, p.height) {
p.place(xOffset, 0)
}
}
}
@Composable
@OptIn(ExperimentalFoundationApi::class)
private fun VerticalTailFollowintTextField(
value: TextFieldValue,
onValueChange: (TextFieldValue) -> Unit,
modifier: Modifier,
textStyle: TextStyle = TextStyle(fontSize = fontSize8)
) {
Layout(
children = @Composable {
BaseTextField(
value = value,
onValueChange = onValueChange,
textStyle = textStyle
)
},
modifier = modifier
) { measurable, constraints ->
val p = measurable[0].measure(
Constraints(
minWidth = constraints.minWidth,
maxWidth = constraints.maxWidth,
minHeight = 0,
maxHeight = Constraints.Infinity
)
)
val height = min(p.height, constraints.maxHeight)
val yOffset = min(0, constraints.maxHeight - p.height)
layout(p.width, height) {
p.place(0, yOffset)
}
}
}