Comment créer une mise en page avec un bouton de chaque côté d'une fenêtre de texte ? Voici ce que j'ai obtenu jusqu'à présent :
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/left_button"
android:layout_width="72dip"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="left" />
<TextView
android:id="@+id/center_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dip"
android:padding="10dip"
android:text="textview" />
<Button
android:id="@+id/right_button"
android:layout_width="72dip"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="right" />
</RelativeLayout>
Le problème ici est que la fenêtre de texte est centrée. Je veux que la fenêtre de texte remplisse tout l'espace restant. J'ai essayé de régler son Android:layout_width sur fill_parent et de supprimer l'Android:layout_centerHorizontal, mais il semble alors chevaucher les boutons.