Skip to content

Instantly share code, notes, and snippets.

@LuisHCK
Created August 24, 2017 23:28
Show Gist options
  • Save LuisHCK/00ea6347781733f88184c7bf71e93d4d to your computer and use it in GitHub Desktop.
Save LuisHCK/00ea6347781733f88184c7bf71e93d4d to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:id="@+id/cv"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp">
<TextView
android:id="@+id/nombre_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:textSize="30sp" />
<TextView
android:id="@+id/cedula_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/nombre_text" />
<TextView
android:id="@+id/correo_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/cedula_text" />
</RelativeLayout>
</android.support.v7.widget.CardView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment