Skip to content

Instantly share code, notes, and snippets.

@briansalvattore
Created September 5, 2016 15:20
Show Gist options
  • Save briansalvattore/fe4ff3668a13fc719db5ddbf79df1b41 to your computer and use it in GitHub Desktop.
Save briansalvattore/fe4ff3668a13fc719db5ddbf79df1b41 to your computer and use it in GitHub Desktop.
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical"
android:background="#FFBC61" >
<TextView
android:text="Brian Castillo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#3C1FB2"
android:textColor="@android:color/white"
android:textSize="40sp"
android:gravity="center"/>
<TextView
android:text="Desarrollador Android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#3C1FB2"
android:textColor="@android:color/white"
android:textSize="20sp"
android:gravity="center"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal">
<TextView
android:text="Edad: "
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="right"
android:padding="5dp"
android:textSize="20sp"
android:background="#FFD52D"/>
<TextView
android:text="22"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="left"
android:padding="5dp"
android:textSize="20sp"
android:background="#FFD58D"/>
</LinearLayout>
<TextView
android:text="Gustos: Comida italiana y programar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:textSize="20sp"
android:layout_margin="10dp"
android:background="#FFEA8D"/>
<TextView
android:text="Odia: Los campers"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:textSize="18sp"
android:layout_margin="10dp"
android:background="#FFD58D"/>
<TextView
android:text="Trabajo: Horses Developer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:padding="5dp"
android:textSize="20sp"
android:layout_margin="10dp"
android:background="#FFEA8D"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="300dp"
android:src="@drawable/marshmallow"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment