Aligner les boutons à l'intérieur d'un TableRow

Je voudrais développer une application Android.

J'ai ceci:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="200px"
  android:orientation="vertical">
  <TextView
        android:id="@+id/gameTitle"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:focusable="false"
        android:focusableInTouchMode="false"
        android:gravity="left"
        android:layout_margin="5px"
        android:text="aaaaa"/>
  <TextView
        android:id="@+id/gameDescription"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:focusable="false"
        android:focusableInTouchMode="false"
        android:gravity="left"
        android:layout_margin="5px"
        android:typeface="sans"
        android:textSize="16sp"
        android:textStyle="bold"
        android:text="dddddd"/>
  <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/ButtonsTable"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
            <Button
                android:text="@string/yes"
                android:id="@+id/playGame"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
            <Button
                android:text="@string/no"
                android:id="@+id/noPlayGame"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>
        </TableRow>
    </TableLayout>
</LinearLayout>

Je veux mettre playGame bouton sur le côté gauche du centre, et noPlayGame bouton à la droite du centre.

Maintenant, les deux apparaissent alignés à gauche de la TableRow.

Comment puis-je faire cela?

Merci.

MODIFIER: j'ai ajouté de la mise en page et les modifications suggérées par Ashay.
2ème EDITION:
LA SOLUTION
j'ai ajouté à TableLayout suivantes: android:stretchColumns="0,1". Maintenant les boutons sont au centre de la alignées, mais ils remplissent leur entiry colonne!!!

Probablement la peine de poster votre propre réponse et le marquer comme réponse, de sorte que cela ne va pas continuer à montrer dans les questions restées en suspens de liste.
Je n'aime pas à répondre à mon propriétaire de questions.

OriginalL'auteur VansFannel | 2010-10-06