0% found this document useful (0 votes)
25 views

Linearlayout: Android:Id "@+Id/Tvtitulo"

The document defines an Android layout using a vertical LinearLayout containing a title TextView at the top centered, followed by 3 product TextViews, and 3 action buttons at the bottom - one to email, one to confirm, and one to return.

Uploaded by

Melisa Medina
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views

Linearlayout: Android:Id "@+Id/Tvtitulo"

The document defines an Android layout using a vertical LinearLayout containing a title TextView at the top centered, followed by 3 product TextViews, and 3 action buttons at the bottom - one to email, one to confirm, and one to return.

Uploaded by

Melisa Medina
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<LinearLayout

android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_margin="20dp"
android:padding="10dp"
android:text="Carrito de Compra"
android:textColor="#FFFFFFF"
android:textSize="20sp" />
android:id="@+id/tvTitulo"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Prodcuto 1"
android:layout_gravity="center_horizontal"
android:textSize="20sp"
android:textColor="#FFFFFF"
android:layout_margin="20dp"
android:padding="10dp"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Prodcuto 2"
android:layout_gravity="center_horizontal"
android:textSize="20sp"
android:textColor="#FFFFFF"
android:layout_margin="20dp"
android:padding="10dp"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Prodcuto 2"
android:layout_gravity="center_horizontal"
android:textSize="20sp"
android:textColor="#FFFFFF"
android:layout_margin="20dp"
android:padding="10dp"

<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Enviar por correo electronico"/>
<button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="confirmar"/>
<button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Volver"/>

</LinearLayout>

You might also like