?
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:stretchColumns="1" > <TableRow> <TextView android:text="row 1 column1" android:padding="3dp" /> <TextView android:text="row 1 colume2" android:gravity="right" android:padding="3dp" /> </TableRow> <TableRow> <TextView android:text="row 2 colume1" android:padding="3dp" /> <TextView android:text="row 2 column2" android:gravity="right" android:padding="3dp" /> </TableRow> <TableRow> <Button android:id="@+id/secondButt" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </TableRow> </TableLayout>
?
?Dialog window:
?
set at the AndroidManifest.xml
?
?
<activity android:name="SecondActivity" android:theme="@android:style/Theme.Dialog"> </activity>?
?
?