如何在Android中使用XML和Inflater从ArrayList动态填充TableLayout

时间:2019-07-03 05:32:35

标签: java android android-tablelayout

我正在尝试通过扩大TableRow xml布局来创建类时动态填充TableLayout,以模拟创建“报告”。我应该澄清一下,这是在Android Studio中。

我的代码似乎运行得很好,找到TableRow并将其添加到TableLayout中,但是当我在模拟器上运行应用程序时,它没有显示任何内容(表明它实际上并未向布局中添加任何内容)。我尝试调试,甚至在遍历类时编写变量状态的日志,但似乎一切正常,只是未在应用程序中显示。

这是我的TableRow xml代码:

<?xml version="1.0" encoding="utf-8"?>
<TableRow
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"
    android:background="@color/colorWhite">

<TextView
    android:id="@+id/rowPatientVerWhen"
    android:layout_width="133dp"
    android:layout_height="match_parent"
    android:gravity="left|center_vertical"
    android:textIsSelectable="false"
    android:clickable="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:background="@drawable/my_border"
    android:textColor="@color/colorBlack"
    android:textSize="18sp"/>

<TextView
    android:id="@+id/rowPatientTestName"
    android:layout_width="135dp"
    android:layout_height="match_parent"
    android:gravity="left|center_vertical"
    android:textIsSelectable="false"
    android:clickable="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:background="@drawable/my_border"
    android:textColor="@color/colorBlack"
    android:textSize="18sp"/>

<TextView
    android:id="@+id/rowPatientResult"
    android:layout_width="126dp"
    android:layout_height="match_parent"
    android:gravity="left|center_vertical"
    android:textIsSelectable="false"
    android:clickable="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:background="@drawable/my_border"
    android:textColor="@color/colorBlack"
    android:textSize="18sp"/>

</TableRow>

这是我的TableLayout xml代码:

<TableLayout
    android:id="@+id/patientTestsTableLayout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toBottomOf="@id/patientResultsLabelsLayout"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent">

</TableLayout>

这是当onCreate方法被调用时我在类中用来填充TableLayout的内容:

TableLayout table =(TableLayout)PatientResultsReportActivity.this.findViewById(R.id.patientTestsTableLayout);
    fillPatientTests(DBCustomOperation.getPatientResults(PatientResultsReportActivity.this,patient),table);

    this.setTitle(patient.getName() + " Results Report");
}

private void fillPatientTests(ArrayList<Result> results, TableLayout table) {
    if(results.size() == 0) {
        TableRow row = (TableRow) LayoutInflater.from(PatientResultsReportActivity.this).inflate(R.layout.patient_test_row_layout, null);
        ((TextView) row.findViewById(R.id.rowPatientVerWhen)).setText("N/A");
        ((TextView) row.findViewById(R.id.rowPatientTestName)).setText("N/A");
        ((TextView) row.findViewById(R.id.rowPatientResult)).setText("N/A");
        table.addView(row);
    } else {
        for(int i = 0; i < results.size(); i++) {
            TableRow row = (TableRow) LayoutInflater.from(PatientResultsReportActivity.this).inflate(R.layout.patient_test_row_layout, null);
            ((TextView) row.findViewById(R.id.rowPatientVerWhen)).setText(results.get(i).getResultWhen());
            ((TextView) row.findViewById(R.id.rowPatientTestName)).setText(results.get(i).getTestName());
            ((TextView) row.findViewById(R.id.rowPatientResult)).setText(results.get(i).getResult());
            table.addView(row);
        }
    }
    table.requestLayout();
}

关于我可能会缺少的任何想法吗?在构建或运行期间没有收到任何错误消息。

0 个答案:

没有答案