Skip to content

Instantly share code, notes, and snippets.

@fatorx
Created June 2, 2015 19:46
Show Gist options
  • Save fatorx/f7ca9053caa3ab7ae46f to your computer and use it in GitHub Desktop.
Save fatorx/f7ca9053caa3ab7ae46f to your computer and use it in GitHub Desktop.
Linear Layout - alinhar um elemento no centro
<LinearLayout
android:layout_width="270dp"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_vertical"
android:background="#993366">
<TextView
android:id="@+id/tvTitleActivity"
android:layout_gravity="center"
android:text="Título Modelo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22dp"
android:textColor="#FFF" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment