0

在我的应用程序中,我有一个布局有些复杂的表格:它是一个 3x3 表格,顶部和左侧是静态标题,其他四个单元格分别包含一个包含我的信息的表格。

这个内部表有两个选项,我以编程方式选择要使用的两个选项,然后将它们添加到表中。到目前为止,一切都很好。

现在,当更新表格中的信息时,会在单元格中添加第二个表格,而不是替换原来的表格。因此,经过几次更新,我的主表变得很大,其中的单元格非常高,有许多内部表。当然不是这个想法。

private int setTable(int minAPI, int maxAPI, TableLayout tableId) {

    // Get the levels that belong to the API.
    String minLevel = getLevel(minAPI);
    String maxLevel = getLevel(maxAPI);

    // Get an inflater to inflate the table layouts.
    LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    // Get the layout of the API/Level table. 
    // Which one to use for the levels depends on whether the levels are 
    // the same or not.
    TextView textLevelFrom = null;
    TextView textLevelTo = null;
    TableLayout tableLayout = null;

    if (minLevel.equals(maxLevel)) {
        Log.v(TAG, "Setting up api_table1.");
        tableLayout = (TableLayout) inflater.inflate(R.layout.api_table1, tableId);
        textLevelFrom = (TextView) tableLayout.findViewById(R.id.textLevel);
        textLevelFrom.setText(minLevel);        
        textLevelFrom.setTextColor(getColour(minAPI));  
    }

    else {
        Log.v(TAG, "Setting up api_table2.");
        tableLayout = (TableLayout) inflater.inflate(R.layout.api_table2, tableId);
        textLevelFrom = (TextView) tableLayout.findViewById(R.id.textLevelFrom);
        textLevelFrom.setText(minLevel);        
        textLevelFrom.setTextColor(getColour(minAPI));  
        textLevelTo = (TextView) tableLayout.findViewById(R.id.textLevelTo);
        textLevelTo.setText(maxLevel);
        textLevelTo.setTextColor(getColour(maxAPI));
    }

    Log.v(TAG, "Populating the table.");

    TextView textAPIFrom = (TextView) tableLayout.findViewById(R.id.textAPIFrom);
    textAPIFrom.setText(""+minAPI);     
    textAPIFrom.setTextColor(getColour(minAPI));

    TextView textAPITo = (TextView) tableLayout.findViewById(R.id.textAPITo);
    textAPITo.setText(""+maxAPI);
    textAPITo.setTextColor(getColour(maxAPI));

    textLevelFrom.setText(minLevel);        
    textLevelFrom.setTextColor(getColour(minAPI));

    return tableLayout.getId();
}

以前是通过类似TableLayout TableId的调用找到的

tableCurrentGeneral = (TableLayout) findViewById(R.id.CurrentGeneral);

四个细胞中的每一个。主表在main.xml中定义;这些表格的单元格是一个空的 TableLayout。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.squirrel.hkairpollution.MySupportMapFragment"
    />
<!-- class="com.google.android.gms.maps.SupportMapFragment" -->

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tableAPI" 
        android:background="@color/translucent_white"
        android:layout_alignBottom="@id/map">

        <!-- First row: headers. -->
        <TableRow
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" 
                android:text="@string/general" 
                android:textStyle="bold" 
                android:textColor="@color/black"
                android:gravity="center" 
                android:paddingRight="8dip" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/roadside" 
                android:textStyle="bold" 
                android:textColor="@color/black"
                android:gravity="center" />

        </TableRow>

        <!-- Second row: current API -->                
        <TableRow
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:text="@string/current" 
                android:textStyle="bold" 
                android:textColor="@color/black"
                android:paddingRight="5dip"
                android:gravity="center" />

            <!-- Current API, general stations -->
            <TableLayout
                android:id="@+id/CurrentGeneral"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" 
                android:paddingRight="8dip" />

            <TableLayout
                android:id="@+id/CurrentRoadside"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />
        </TableRow>

        <!-- Third row: forecast API -->
        <TableRow
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:text="@string/forecast" 
                android:textStyle="bold" 
                android:textColor="@color/black"
                android:paddingRight="5dip"
                android:gravity="center" />

            <!-- Forecast API, general stations -->
            <TableLayout
                android:id="@+id/ForecastGeneral"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" 
                android:paddingRight="8dip" />

            <TableLayout
                android:id="@+id/ForecastRoadside"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content" />
        </TableRow>
    </TableLayout>

    <ProgressBar
        android:id="@+id/progressBar1"
        android:visibility="invisible"
        android:layout_width="48dip"
        android:layout_height="48dip"
        android:layout_alignTop="@id/map" 
        android:layout_alignLeft="@id/map"/>

    <ImageView
        android:id="@+id/refresh"
        android:layout_width="48dip"
        android:layout_height="48dip"
        android:contentDescription="@string/refresh"
        android:layout_alignTop="@id/map" 
        android:layout_alignLeft="@id/map"
        android:src="@drawable/ic_menu_refresh" />

</RelativeLayout>

线

tableLayout = (TableLayout) inflater.inflate(R.layout.api_table1, tableId);

正确链接 api_table1 resp。api_table2 布局到所需的单元格,但一直添加此布局时,它不会被替换。

我没有成功地尝试将刚刚添加的视图的 id 交回,以便稍后将其删除:

tableAPI.removeView(findViewById(tableCurrentRoadsideId));

如何才能做到这一点?

4

1 回答 1

0

最后通过稍微不同的路线解决了它。

我错误地认为,当您再次将视图附加到单元格时,它是附加到它的第二个视图。相反,我的表向自身附加了更多行。

而且还没有关于实际工作的文档TableLayout.removeView()

解决方案:在setTable从该表中删除所有视图的行的开头。这清除了这张表,之后我可以重新附加我的布局,一切都应该是这样。

private void setTable(int minAPI, int maxAPI, TableLayout tableId) {
    tableId.removeAllViews();
    ...
于 2013-03-18T16:37:55.677 回答