Mike
У меня есть нечто подобное в одном из моих приложений, вот код, который должен дать вам то, что вы ищете, просто поместите это в существующий диалог ...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ButtonGroup"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/DialogText"
android:orientation="horizontal">
<Button android:id="@+id/dialogOkButton"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/lblSet"/>
<Button android:id="@+id/dialogCancelButton"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/lblCancel"/>
</LinearLayout>
LinearLayout - это то, что заставляет его растягиваться через родительское представление. Пожалуйста, имейте в виду, что вам нужно поместить это в ваш макет, чтобы LinearLayout был в вашем макете. Я немного устал, извините, если я болтаю: -P