我是android开发的新手,通过开发我的UI
看起来容易但不起作用来解决我的问题。我的应用程序的方法应该为我构建一个新的UI
。
应该使用 x表格行创建tableLayout
。我之前不知道有多少是这样的,所以我在Code中做到了。但我没有看到任何错误/警告。
此处我的代码来自 MainActivity.java :
private void buildNewUI(PatientRepository repoPatient, ExternalSystemsRepository repoExtSys){
TableLayout tableLayout = new TableLayout(this);
tableLayout.setLayoutParams(new TableRow.LayoutParams(TableRow.LayoutParams.MATCH_PARENT, TableRow.LayoutParams.MATCH_PARENT));
tableLayout.setStretchAllColumns(true);
Iterator patIterator = repoPatient.getIterator();
while(patIterator.hasNext()){
TableRow row = new TableRow(this);
Patient patient = (Patient) patIterator.next();
TextView outputLeft = new TextView(this);
outputLeft.setText(patient.getSurname());
row.addView(outputLeft);
tableLayout.addView(row);
}
}
activity_main.xml中:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.patientfinder.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
and content_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.patientfinder.MainActivity"
tools:showIn="@layout/activity_main">
</TableLayout>
我的错误是什么?
答案 0 :(得分:0)
我很抱歉!有时你会在一分钟后找到解决方案......
我在context_main.xml中为我的TableLayout提供了id TableLayout,然后在Code I中用以下代码替换了创建新的表布局:
TableLayout layout = (TableLayout) findViewById(R.id.TableLayout);
现在它有效,我看到了我的桌子!