Skip to content

Instantly share code, notes, and snippets.

@alvareztech
Created September 24, 2016 21:23
Show Gist options
  • Save alvareztech/5d5e5496f45182a9623b4130ddf69865 to your computer and use it in GitHub Desktop.
Save alvareztech/5d5e5496f45182a9623b4130ddf69865 to your computer and use it in GitHub Desktop.
LinearLayout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="horizontal"
tools:context="tech.alvarez.ejemploviews.SegundaActivity">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#F44336"
android:text="Hola" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#9C27B0"
android:text="Hola" />
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#2196F3"
android:text="Hola" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment