以矩阵格式显示2D数组

时间:2013-04-14 06:15:28

标签: android android-layout

我希望 2D数组显示为矩阵格式。对于哪种布局合适?我可以有任何例子吗?

1 个答案:

答案 0 :(得分:0)

简单的答案是在TableLayout内使用TextView

但是如果你想显示一个大数组,你应该让矩阵在两个方向上都可以滚动。下面是填充矩阵的代码,该矩阵在EditText内显示为一系列TableLayout内部行。使用两个ScrollView可以在两个方向上滚动TableLayout。根据您的需求调整代码。 tableTableLayout,标识为tableLayout1

private void fillTable(final int n, final double[][] matrix, TableLayout table) {
table.removeAllViews();
for (int i = 0; i < n; i++) {
    TableRow row = new TableRow(MainActivity.this);
    row.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT));

    for (int j = 0; j < n; j++) {
        EditText edit = new EditText(OutputActivity.this);
        edit.setInputType(InputType.TYPE_CLASS_NUMBER|InputType.TYPE_NUMBER_FLAG_DECIMAL|InputType.TYPE_NUMBER_FLAG_SIGNED);
        edit.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.WRAP_CONTENT, TableRow.LayoutParams.WRAP_CONTENT));

        edit.setText(Double.toString(matrix[i][j]));

        edit.setKeyListener(null);
        row.addView(edit);
    }
    table.addView(row);
}
}

布局XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center_vertical"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <HorizontalScrollView
                android:id="@+id/horizontalScrollView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" >

                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:orientation="horizontal" >

                    <TableLayout
                        android:id="@+id/tableLayout1"
                        android:layout_width="wrap_content"
                        android:layout_height="match_parent" >
                    </TableLayout>
                </LinearLayout>
            </HorizontalScrollView>
        </LinearLayout>
    </ScrollView>
</LinearLayout>