Si vous voulez centrer un élément dans le milieu de l'écran, n'utilisez pas un LinearLayout
que ceux-ci sont destinés à l'affichage d'un certain nombre d'éléments dans une rangée.
Utiliser un RelativeLayout
à la place.
Pour le remplacer:
android:layout_gravity="center_vertical|center_horizontal"
pour l' RelativeLayout
option:
android:layout_centerInParent="true"
Si votre fichier de mise en page ressemble à ceci:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageButton android:id="@+id/btnFindMe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/findme"></ImageButton>
</RelativeLayout>