Sapp
Sapp

Reputation: 1803

Centering an ImageButton and a TextView in a RelativeLayout

android:layout_gravity="center" doesn't seem to work the same in a RelativeLayout as it does in a LinearLayout.

I would like both an ImageButton and a TextView to be centered in a RelativeLayout - is there a basic xml code for this?

Upvotes: 2

Views: 1473

Answers (1)

Asahi
Asahi

Reputation: 13486

android:layout_centerHorizontal="true"

Also :

android:layout_centerInParent 
android:layout_centerVertical

Upvotes: 5

Related Questions