|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
package com.example.myapplication import android.os.Bundle import androidx.activity.ComponentActivity import androidx.activity.compose.setContent import androidx.compose.foundation.layout.* import androidx.compose.material3.MaterialTheme import androidx.compose.material3.Surface import androidx.compose.material3.Text import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier import androidx.compose.ui.Alignment import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.IntOffset import androidx.compose.ui.geometry.Offset import androidx.compose.ui.tooling.preview.Preview import com.example.myapplication.ui.theme.MyApplicationTheme class MainActivity : ComponentActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContent { MyApplicationTheme { // A surface container using the 'background' color from the theme Surface( modifier = Modifier.fillMaxSize(), color = MaterialTheme.colorScheme.background ) { MainContent() } } } } } @Composable fun MainContent() { // Usar Box para simular RelativeLayout Box( modifier = Modifier .fillMaxSize() .padding(16.dp) ) { // Greeting alineado al centro del Box Greeting("Android", Modifier.align(Alignment.Center)) // Greeting alineado al centro del Box pero desplazado hacia abajo Greeting("Compose", Modifier .align(Alignment.Center) .offset(y = 50.dp) ) // Greeting alineado a la esquina inferior derecha Greeting("Bottom Right", Modifier .align(Alignment.BottomEnd) .padding(16.dp) ) } } @Composable fun Greeting(name: String, modifier: Modifier = Modifier) { Text( text = "Hello $name!", modifier = modifier ) } @Preview(showBackground = true) @Composable fun GreetingPreview() { MyApplicationTheme { MainContent() } } |

Explicación del código:
MainContent:Greeting:GreetingPreview:onCreate:

