Enlaces profundos en Android usando Jetpack Compose

Un enlace profundo es una URL que se utiliza para dirigir a los usuarios a una página específica o una actividad específica dentro de la aplicación. También podemos pasar datos a nuestra aplicación con la ayuda de estos enlaces profundos. En este artículo, veremos cómo implementar enlaces profundos en Android Jetpack Compose

Implementación paso a paso

Paso 1: crea un nuevo proyecto en Android Studio

Para crear un nuevo proyecto en Android Studio, consulte Cómo crear/iniciar un nuevo proyecto en Android Studio . Al elegir la plantilla, seleccione Actividad de composición vacía . Si no encuentra esta plantilla, intente actualizar Android Studio a la última versión. Demostramos la aplicación en Kotlin, así que asegúrese de seleccionar Kotlin como idioma principal al crear un nuevo proyecto.

Paso 2: Agregar un nuevo color en el archivo Color.kt

Vaya a aplicación > java > nombre del paquete de su aplicación > ui.theme > archivo Color.kt y agréguele el siguiente código. Se agregan comentarios en el código para conocer en detalle. 

Kotlin

package com.example.newcanaryproject.ui.theme
  
import androidx.compose.ui.graphics.Color
  
val Purple200 = Color(0xFF0F9D58)
val Purple500 = Color(0xFF0F9D58)
val Purple700 = Color(0xFF3700B3)
val Teal200 = Color(0xFF03DAC5)
  
// on below line we are adding different colors.
val greenColor = Color(0xFF0F9D58)

Paso 3: trabajar con el archivo AndroidManifest.xml

Vaya a la aplicación > AndroidManifest.xml y agréguele el siguiente código. Como estamos creando un enlace profundo para nuestro archivo MainActivity.kt, tenemos que agregar este código en la parte MainActivity. A continuación se muestra el código que se agregará al archivo AndroidManifext.xml. Se agregan comentarios en el código para conocer con más detalle. 

XML

<!--as we want to open main activity from our link so we are specifying
    only in main activity or we can specify that in different activity as well
    on below line we are adding intent filter to our MainActivity-->
<intent-filter>
    <!--below line is to set the action to our intent to view-->
    <action android:name="android.intent.action.VIEW" />
  
    <!--on below line we are adding a default category to our intent-->
    <category android:name="android.intent.category.DEFAULT" />
  
    <!--on below line we are adding a category to make our app browsable-->
    <category android:name="android.intent.category.BROWSABLE" />
  
    <!--on below line we are specifying the host name and
        the scheme type from which we will be calling our app-->
    <data android:host="www.chaitanyamunje.com"
          android:scheme="https" />
</intent-filter>
  
<!--below is the same filter as above just the scheme is changed to http -->
<!--so we can open our app with the url starting with https and http as well-->
<intent-filter>
    <action android:name="android.intent.action.VIEW" />
  
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
  
    <data android:host="www.chaitanyamunje.com"
          android:scheme="http" />
</intent-filter>

El código completo para el archivo AndroidManifest.xml se proporciona a continuación. 

XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
     
    <queries>
        <intent>
            <action android:name="android.speech.RecognitionService" />
        </intent>
    </queries>
  
    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.NewCanaryProject"
        tools:targetApi="31">
  
        <activity
            android:name=".MainActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:theme="@style/Theme.NewCanaryProject">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
  
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
  
            <!--as we want to open main activity from our link so we are specifying
                only in main activity or we can specify that in different activity as well-->
            <!--on below line we are adding intent filter to our MainActivity-->
            <intent-filter>
                <!--below line is to set the action to our intent to view-->
                <action android:name="android.intent.action.VIEW" />
                <!--on below line we are adding a default category to our intent-->
                <category android:name="android.intent.category.DEFAULT" />
                <!--on below line we are adding a category to make our app browsable-->
                <category android:name="android.intent.category.BROWSABLE" />
                <!--on below line we are specifying the host name and
                    the scheme type from which we will be calling our app-->
                <data
                    android:host="www.chaitanyamunje.com"
                    android:scheme="https" />
            </intent-filter>
  
            <!--below is the same filter as above just the scheme is changed to http -->
            <!--so we can open our app with the url starting with https and http as well-->
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
  
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
  
                <data
                    android:host="www.chaitanyamunje.com"
                    android:scheme="http" />
            </intent-filter>
  
        </activity>
    </application>
  
</manifest>

Paso 4: trabajar con el archivo MainActivity.kt

Vaya al archivo MainActivity.kt y consulte el siguiente código. A continuación se muestra el código del archivo MainActivity.kt. Se agregan comentarios dentro del código para comprender el código con más detalle.

Kotlin

package com.example.newcanaryproject
  
import android.content.Intent
import android.net.Uri
import android.os.Bundle
import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.compose.foundation.layout.*
import androidx.compose.material.*
import androidx.compose.runtime.*
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.unit.*
import com.example.newcanaryproject.ui.theme.*
  
class MainActivity : ComponentActivity() {
  
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContent {
            NewCanaryProjectTheme {
                // on below line we are specifying background color for our application
                Surface(
                    // on below line we are specifying modifier and color for our app
                    modifier = Modifier.fillMaxSize(), color = MaterialTheme.colors.background
                ) {
  
                    // on below line we are specifying theme as scaffold.
                    Scaffold(
  
                        // in scaffold we are specifying top bar.
                        topBar = {
  
                            // inside top bar we are specifying background color.
                            TopAppBar(backgroundColor = greenColor,
  
                                // along with that we are specifying title for our top bar.
                                title = {
  
                                    // in the top bar we are specifying tile as a text
                                    Text(
  
                                        // on below line we are specifying text 
                                        // to display in top app bar.
                                        text = "Deep Links in Android",
  
                                        // on below line we are specifying modifier
                                        // to fill max width.
                                        modifier = Modifier.fillMaxWidth(),
  
                                        // on below line we are specifying text alignment.
                                        textAlign = TextAlign.Center,
  
                                        // on below line we are specifying color for our text.
                                        color = Color.White
                                    )
                                })
                        }) {
                        // on below line we are calling deep
                        // links ui method to display ui
                        deepLinksUI(intent)
                    }
                }
            }
        }
    }
}
  
@Composable
fun deepLinksUI(intent: Intent) {
  
    // on below line we are creating a variable for deep link
    val deepLinkMsg = remember {
        mutableStateOf("")
    }
  
    // getting the data from our
    // intent in our uri.
    val uri: Uri? = intent.data
  
    // checking if the uri is null or not.
    if (uri != null) {
        // if the uri is not null then we are getting the
        // path segments and storing it in list.
        val parameters: List<String> = uri.getPathSegments()
  
        // after that we are extracting string from that parameters.
        val param = parameters[parameters.size - 1]
  
        // on below line we are setting
        // that string to our text view
        // which we got as params.
        deepLinkMsg.value = param
    }
  
    // on below line we are creating a column for our ui.
    Column(
        // in this column we are adding a modifier for our column 
        // and specifying max width, height and size.
        modifier = Modifier
            .fillMaxWidth()
            .fillMaxHeight()
            .fillMaxSize()
  
            // on below line we are adding padding 
            // from all sides to our column.
            .padding(6.dp),
  
        // on below line we are adding vertical 
        // arrangement for our column as bottom
        verticalArrangement = Arrangement.Center,
  
        // on below line we are adding 
        // horizontal alignment for our column.
        horizontalAlignment = Alignment.CenterHorizontally
    ) {
        // on below line we are displaying a simple text
        Text(
  
            // on below line we are specifying 
            // modifier as padding for our text.
            modifier = Modifier.padding(6.dp),
  
            // on below line we are 
            // specifying text as normal image.
            text = "Deep Links in Android",
  
            // on below line we are 
            // specifying font weight as bold.
            fontWeight = FontWeight.Bold,
  
            // on below line we are setting
            // color for our text
            color = greenColor,
  
            // on below line we are 
            // setting font size.
            fontSize = 20.sp
        )
  
        // on below line we are adding a spacer
        Spacer(modifier = Modifier.height(20.dp))
  
  
        // on below line we are displaying a simple text
        Text(
  
            // on below line we are specifying 
            // modifier as padding for our text.
            modifier = Modifier.padding(6.dp),
  
            // on below line we are 
            // specifying text as normal image.
            text = deepLinkMsg.value,
  
            // on below line we are specifying 
            // font weight as bold.
            fontWeight = FontWeight.Bold,
  
            // on below line we are setting
            // color for our text
            color = greenColor,
  
            // on below line we are
            // setting font size.
            fontSize = 20.sp
        )
  
    }
  
}

Ahora ejecute su aplicación para ver el resultado.

Salida

Publicación traducida automáticamente

Artículo escrito por chaitanyamunje y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *