0

我是 android dev 的初学者,我在以下问题上苦苦挣扎。我想创建一个带有以编程方式创建的表格布局的片段。我首先从一个 Activity 而不是我这样做的片段开始:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    View view = getLayoutInflater().inflate(R.layout.activity_testtable, null,false);
    fillLayout(view);       
    setContentView(view);
}

protected void fillLayout(View rootView) {

    TableLayout tl;
    TableRow    tr;
    TextView    tv;
    int i = 0;  

    tl = (TableLayout) rootView.findViewById(R.id.time_range);

    for (i = 0 ; i < 10  ; i++ ) { 
        tv = new CellWorkshopTable(this);
        tv.setText("11h00 - 14h40" );
        tr = new TableRow (this);
        tr.addView(tv);    
        tl.addView(tr); 
    }

    [...]

}

它工作得很好,表格是按照我想要的方式创建的,在 2 轴上滚动等等。然后我想把它设置成一个片段,所以我在我的片段中做了以下操作:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View aView = inflater.inflate(R.layout.activity_testtable, container, false);   
    fillLayout(aView);  
    return aView;
}

因此,当我提交片段时,什么都没有出现,logcat 中没有错误,没有崩溃,似乎一切都在那里,但没有显示任何内容。

这是布局,目的是要有完整的结构,只需添加 tableRow 和单元格(它们是 textviews):

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/time_table"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:padding="0dp"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="0dp" >

    <TableLayout
        android:id="@+id/time_range"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >
    </TableLayout>

    <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="vertical"
            android:padding="0dp" >

            <TableLayout
                android:id="@+id/header_rooms"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" >
            </TableLayout>

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

所以在写这个问题的时候我试图通过删除Horizo​​ntalScrollView和他的孩子来简化布局,然后在第一个tablelayout中添加的TableRows然后显示

删除 Horizo​​ntalScrollView 但保留 TableLayout+id/header_rooms 和 TableLayout+id/time_table_content,使 header_rooms 工作和 time_table_content KO。

那么片段是否有布局数量限制,我该如何规避呢?

4

1 回答 1

0

事实上,通过清理我的布局中所有不必要的元素,它就会按预期工作。

所以片段似乎对布局元素组合更加“严格”。

于 2013-03-13T13:27:30.710 回答