Skip to content

Instantly share code, notes, and snippets.

@alvareztech
Created September 24, 2016 21:17
Show Gist options
  • Save alvareztech/58d06016bd6c06195f080da698290b5b to your computer and use it in GitHub Desktop.
Save alvareztech/58d06016bd6c06195f080da698290b5b to your computer and use it in GitHub Desktop.
Ejemplo componente centro. Curso de desarrollo de aplicaciones Android
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_segunda"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="tech.alvarez.ejemploviews.SegundaActivity">
<TextView
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="#F44336"
android:text="Hola" />
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment