Created
May 11, 2015 17:02
-
-
Save fatorx/5b0b08dd3f4c0b8017da to your computer and use it in GitHub Desktop.
Centralizar um item em um Relative Layout
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
<RelativeLayout | |
android:id="@+id/rlBlock" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:background="@drawable/bg_item" | |
android:layout_gravity="center_vertical" | |
android:paddingTop="10dp" | |
android:gravity="center_horizontal"> | |
<TextView | |
android:layout_width="200dp" | |
android:layout_height="wrap_content" | |
android:text="View all reviews" | |
android:gravity="center_horizontal" /> | |
</RelativeLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment