Comment puis-je aligner mes ImageView avec mon TextView dans un LinearLayout?

J'ai le texte suivant ImageView et TextView:
Comment puis-je aligner mes ImageView avec mon TextView dans un LinearLayout?

Voici le XML:

<LinearLayout android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/headerLinearLay" android:orientation="horizontal">
        <ImageView android:src="@drawable/icon" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/avatarImageView"></ImageView>
        <TextView android:layout_height="wrap_content" android:id="@+id/usernameTextView" android:text="TextView" android:layout_width="wrap_content" android:paddingLeft="4px"></TextView>
    </LinearLayout>

Comment puis-je faire de l'image et le texte se positionner à la même hauteur? Je veux aussi que le ImageView à être dans le coin

InformationsquelleAutor Sheehan Alam | 2011-05-24