[go: nahoru, domu]

blob: c0ec5f886b6b6c68aabb42bc3258798f9e88a6e9 [file] [log] [blame]
/*
* Copyright 2020 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.ui.layout.demos
import android.app.Activity
import android.os.Bundle
import androidx.compose.Composable
import androidx.ui.core.DensityAmbient
import androidx.ui.core.Layout
import androidx.ui.core.LayoutDirection
import androidx.ui.core.Modifier
import androidx.ui.core.Text
import androidx.ui.core.WithConstraints
import androidx.ui.core.setContent
import androidx.ui.graphics.Color
import androidx.ui.layout.Column
import androidx.ui.layout.LayoutGravity
import androidx.ui.layout.LayoutSize
import androidx.ui.layout.Row
import androidx.ui.layout.Arrangement
import androidx.ui.layout.LayoutWidth
import androidx.ui.layout.Stack
import androidx.ui.foundation.DrawBackground
import androidx.ui.layout.LayoutDirectionModifier
import androidx.ui.unit.IntPxPosition
import androidx.ui.unit.dp
import androidx.ui.unit.ipx
class RtlDemosActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
Column(arrangement = Arrangement.SpaceEvenly) {
Text("TEXT", LayoutGravity.Center)
testText()
Text("ROW", LayoutGravity.Center)
testRow()
Text("ROW WITH LTR MODIFIER", LayoutGravity.Center)
testRow_modifier()
Text("RELATIVE TO SIBLINGS", LayoutGravity.Center)
testSiblings()
Text("PLACE WITH AUTO RTL SUPPORT IN CUSTOM LAYOUT", LayoutGravity.Center)
CustomLayout(true)
Text("PLACE WITHOUT RTL SUPPORT IN CUSTOM LAYOUT", LayoutGravity.Center)
CustomLayout(false)
Text("WITH CONSTRAINTS", LayoutGravity.Center)
LayoutWithConstraints(LayoutDirectionModifier.Ltr, "LD: LTR modifier")
LayoutWithConstraints(LayoutDirectionModifier.Rtl, "LD: RTL modifier")
LayoutWithConstraints(text = "LD: locale")
}
}
}
}
val boxSize = LayoutSize(50.dp, 30.dp)
val size = LayoutSize(10.dp, 10.dp)
@Composable
fun testRow() {
Row {
Stack(boxSize + DrawBackground(Color.Red)) {}
Stack(boxSize + DrawBackground(Color.Green)) {}
Row {
Stack(boxSize + DrawBackground(Color.Magenta)) {}
Stack(boxSize + DrawBackground(Color.Yellow)) {}
Stack(boxSize + DrawBackground(Color.Cyan)) {}
}
Stack(boxSize + DrawBackground(Color.Blue)) {}
}
}
@Composable
fun testRow_modifier() {
Row {
Stack(boxSize + DrawBackground(Color.Red)) {}
Stack(boxSize + DrawBackground(Color.Green)) {}
Row(LayoutDirectionModifier.Ltr) {
Stack(boxSize + DrawBackground(Color.Magenta)) {}
Stack(boxSize + DrawBackground(Color.Yellow)) {}
Stack(boxSize + DrawBackground(Color.Cyan)) {}
}
Stack(boxSize + DrawBackground(Color.Blue)) {}
}
}
@Composable
fun testText() {
Column {
Row {
Stack(size + DrawBackground(Color.Red)) {}
Stack(size + DrawBackground(Color.Green)) {}
Stack(size + DrawBackground(Color.Blue)) {}
}
Text("Text.")
Text("Width filled text.", LayoutWidth.Fill)
Text("שלום!")
Text("שלום!", LayoutWidth.Fill)
Text("-->")
Text("-->", LayoutWidth.Fill)
}
}
@Composable
fun testSiblings() {
Column {
Stack(boxSize +
DrawBackground(Color.Red) +
LayoutGravity.RelativeToSiblings { p -> p.width }
) {}
Stack(boxSize +
DrawBackground(Color.Green) +
LayoutGravity.RelativeToSiblings { p -> p.width * 0.5 }
) {}
Stack(boxSize +
DrawBackground(Color.Blue) +
LayoutGravity.RelativeToSiblings { p -> p.width / 4 }
) {}
}
}
@Composable
fun CustomLayout(rtlSupport: Boolean) {
Layout(children = @Composable {
Stack(boxSize + DrawBackground(Color.Red)) {}
Stack(boxSize + DrawBackground(Color.Green)) {}
Stack(boxSize + DrawBackground(Color.Blue)) {}
}) { measurables, constraints, _ ->
val p = measurables.map { e ->
e.measure(constraints.copy(minWidth = 0.ipx, minHeight = 0.ipx))
}
val w = p.fold(0.ipx) { sum, e -> sum + e.width }
val h = p.maxBy { it.height }!!.height
layout(w, h) {
var xPosition = 0.ipx
for (child in p) {
child.placeAbsolute(IntPxPosition(xPosition, 0.ipx))
if (rtlSupport) {
child.place(IntPxPosition(xPosition, 0.ipx))
} else {
child.placeAbsolute(IntPxPosition(xPosition, 0.ipx))
}
xPosition += child.width
}
}
}
}
@Composable
fun LayoutWithConstraints(modifier: Modifier = Modifier.None, text: String) {
WithConstraints(modifier) { constraints, direction ->
with(DensityAmbient.current) {
val w = (constraints.maxWidth / 3).toDp()
val h = (constraints.maxHeight / 2).toDp()
val color = if (direction == LayoutDirection.Ltr) Color.Red else Color.Magenta
Stack(LayoutSize(w, h) + DrawBackground(color)) {
Text(text, LayoutGravity.Center)
}
}
}
}