我有以下问题,将动态添加的行跨越到滚动视图中的TableLayout。行遵循以下模式:
第1行:整个表格上的单元格
第2行:两个单元格
第3行:细胞横跨整个桌子
...
行N:两个单元格
问题是跨越行的一个单元格的行实际上根本不跨越。它到达屏幕中间的某个点并且只是在高处包裹。
以下是Android 2.3.3下的问题的屏幕截图:
请注意,下面的示例过于简单(但仍然跨越不起作用)。他们准备尝试 - 只需创建文件。我调试了,似乎布局参数在某种程度上消失了。此外,如果TableLayout在main.xml文件中是硬编码的,那么没有问题。不幸的是,我需要动态生成视图。
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.*;
public class TestProject extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TableLayout table = new TableLayout(this);
ScrollView contentHolder = (ScrollView) findViewById(R.id.scrollView1);
contentHolder.addView(table, new TableLayout.LayoutParams(
TableLayout.LayoutParams.FILL_PARENT, TableLayout.LayoutParams.WRAP_CONTENT));
TableRow row1 = (TableRow) View.inflate(this, R.layout.table_span_row, null);
TableRow.LayoutParams rowSpanLayout = new TableRow.LayoutParams(
TableRow.LayoutParams.FILL_PARENT, TableRow.LayoutParams.WRAP_CONTENT);
rowSpanLayout.span = 2;
table.addView(row1, rowSpanLayout);
TableRow row2 = (TableRow) View.inflate(this, R.layout.table_row_columns, null);
table.addView(row2);
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ScrollView android:id="@+id/scrollView1" android:layout_height="fill_parent"
android:layout_width="fill_parent">
</ScrollView>
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<TextView android:layout_height="wrap_content" android:text="This is column one" android:layout_weight="1" android:layout_width="fill_parent"></TextView>
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Column 2"></TextView>
</TableRow>
<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:layout_width="fill_parent">
<LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:layout_span="2" android:background="#FF333333">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="This should span on the whole row"></TextView>
<TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="... but it does not do so"></TextView>
</LinearLayout>
</TableRow>
我已经尝试过requestLayout并且无效但无济于事。
P.S。我也欢迎有关如何在ScrollView中动态替换视图的建议
答案 0 :(得分:2)
好的,我找到了解决方案。它只是删除我希望跨越表格的行的TableRow标记。
<强> table_span_row.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:layout_width="fill_parent"
android:background="#FF333333">
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:text="This should span on the whole row" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="... and now it does" />
</LinearLayout>
我不知道如果我有3列而不想跨越其中两个单元格会发生什么:)
答案 1 :(得分:0)
可能对某人有帮助。即使这个问题超过2年,我现在也看到了同样的错误。也就是说,rowSpanLayout.span = 2;不起作用。但是在xml layout_span中它可以工作。 我找到了可行的解决方案: 1.使用布局属性创建layour xml文件注入:
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<TextView
android:id="@+id/check1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_span="3"
android:text="TextView" />
</TableRow>
</TableLayout>
TableRow.LayoutParams blp; blp = (TableRow.LayoutParams)check1.getLayoutParams(); blp.width = 100; blp.height = 50; TextView tw = new TextView(this); tw.setTextSize(tsEL); tw.setLayoutParams(blp); tw.setText(R.string.empty); tr.addView(tw);
有效。