35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
||
|
a:id="@+id/main_fragment_layout"
|
||
|
a:layout_height="match_parent"
|
||
|
a:layout_width="match_parent"
|
||
|
style="?fragmentLayoutStyle">
|
||
|
|
||
|
<LinearLayout a:layout_height="wrap_content"
|
||
|
a:layout_width="match_parent"
|
||
|
a:gravity="center">
|
||
|
|
||
|
<TextView a:layout_height="wrap_content"
|
||
|
a:layout_width="wrap_content"
|
||
|
a:text="Rows"/>
|
||
|
|
||
|
<org.solovyev.android.view.Picker a:id="@+id/matrix_rows_count_picker"
|
||
|
a:layout_height="wrap_content"
|
||
|
a:layout_width="wrap_content"/>
|
||
|
|
||
|
<TextView a:layout_height="wrap_content"
|
||
|
a:layout_width="wrap_content"
|
||
|
a:text="Columns"/>
|
||
|
|
||
|
<org.solovyev.android.view.Picker a:id="@+id/matrix_cols_count_picker"
|
||
|
a:layout_height="wrap_content"
|
||
|
a:layout_width="wrap_content"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<TableLayout a:id="@+id/matrix_layout"
|
||
|
a:layout_height="match_parent"
|
||
|
a:layout_width="match_parent"/>
|
||
|
|
||
|
</LinearLayout>
|