Skip to content

Instantly share code, notes, and snippets.

@alvareztech
Created September 24, 2016 21:21
Show Gist options
  • Save alvareztech/4c509b63fc2a53748fe91e4857cf1343 to your computer and use it in GitHub Desktop.
Save alvareztech/4c509b63fc2a53748fe91e4857cf1343 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="vertical"
tools:context="tech.alvarez.ejemploviews.SegundaActivity">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#F44336"
android:text="Hola" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#9C27B0"
android:text="Hola" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
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