Skip to content

Instantly share code, notes, and snippets.

@fatorx
Created May 11, 2015 17:02
Show Gist options
  • Save fatorx/5b0b08dd3f4c0b8017da to your computer and use it in GitHub Desktop.
Save fatorx/5b0b08dd3f4c0b8017da to your computer and use it in GitHub Desktop.
Centralizar um item em um Relative Layout
<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