Created
June 2, 2015 19:46
-
-
Save fatorx/f7ca9053caa3ab7ae46f to your computer and use it in GitHub Desktop.
Linear Layout - alinhar um elemento no centro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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