1

我以编程方式创建了一个名为 DataTable 的 TableLayout(类似于Create TableLayout programmatically)。现在我需要以编程方式将表添加到RelativeLayout。我尝试以下方法:

DataTable dataTable = new DataTable(getApplicationContext(), data);
RelativeLayout rootLayout = (RelativeLayout) findViewById(R.id.rel_view);
rootLayout.addView(dataTable);

数据表显示但对齐混乱。我现在的问题是设置与 dataTable 相关的其他组件。

下面我将展示我想要结束的内容。除了,my_table是 dataTable 应该去的地方。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rel_view"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_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"
    tools:context=".MyViewActivity" >

    <TableLayout
        android:id="@+id/my_table"
        android:layout_alignParentTop="true" />

    <Spinner
    android:id="@+id/my_spinner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/my_table" />

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/my_table"
    android:layout_toRightOf="@id/my_spinner"
    android:text="@string/button_mine"
    android:onClick="buttonPushed" />

</RelativeLayout>

一种想法是基本上保持 xml 布局与我的方式相同,然后以某种方式替换my_table为 dataTable,保留idlayout_alignParentTop字段。我不知道该怎么做。

另一个想法是使用

RelativeLayout.LayoutParams layout = new RelativeLayout.LayoutParams(LayoutParams.blahblah)

但我不知道如何设置对齐方式。同样,id与其他观点无关。

如果上述内容不清楚,我的主要问题是:在 RelativeLayout 中,如何将 xml 硬编码元素(Button 和 Spinner)与以编程方式添加的元素(TableLayout)对齐?

4

1 回答 1

0

您可以在布局中添加一个额外的项目( aViewGroup或 a LinearLayout),作为View您拥有的动态创建的容器。将SpinnerButton与这个额外的项目对齐。无需将视图直接添加到布局的根视图中,而是将其添加到容器中。它应该始终保持您在 xml 布局文件中设置的对齐方式。例如,此布局应始终保持您的DataTable低于您的Spinner

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rel_view"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_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"
    tools:context=".MyViewActivity" >

    <TableLayout
        android:id="@+id/my_table"
        android:layout_alignParentTop="true" />

    <Spinner
    android:id="@+id/my_spinner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/my_table" />

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/my_table"
    android:layout_toRightOf="@id/my_spinner"
    android:text="@string/button_mine"
    android:onClick="buttonPushed" />

    <LinearLayout
        android:id="@+id/my_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:layout_below="@id/my_spinner"/>

</RelativeLayout>
于 2013-03-14T23:01:49.627 回答