动态添加TableRow并从edittext,viewtext检索/设置

时间:2014-02-16 17:30:56

标签: android layout dynamic view row

我想动态地将表格行添加到我的布局中,这些行将被添加到名为 main_ScrollView_Container

RelativeLayout

我遇到的问题是:

  1. 添加的行彼此堆叠在一起,而不是彼此之下,以便添加。
  2. 如何检索添加的行,以便我可以读取/写入 EditText 输入 TextView 输出我添加的每一行?
  3. 我的创造:

    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_launcher);
    
        // the inflater
        LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        // the item to inflate
        RelativeLayout relativeLayout = (RelativeLayout) findViewById(R.id.main_ScrollView_Container);
        // the item to inflate with
    
        View tableRow = inflater.inflate(R.xml.my_row, relativeLayout, false);
        relativeLayout.addView(tableRow, 0);
    
        tableRow = inflater.inflate(R.xml.my_row, relativeLayout, false);
        relativeLayout.addView(tableRow, 1);
    
        tableRow = inflater.inflate(R.xml.my_row, relativeLayout, false);
        relativeLayout.addView(tableRow, 2);
    
        tableRow = inflater.inflate(R.xml.my_row, relativeLayout, false);
        relativeLayout.addView(tableRow, 3);
    
        // retrieve/set values to the EditText input
        // retrieve/set values to the TextView output
    }
    

    我得到了这个my_row.xml

    <?xml version="1.0" encoding="utf-8"?>
    <TableRow xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/tableRow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="20dp" >
    
        <EditText
            android:id="@+id/input"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:ems="10"
            android:gravity="center"
            android:hint="@string/input"
            android:inputType="numberDecimal" />
    
        <TextView
            android:id="@+id/output"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:gravity="center"
            android:hint="@string/output"
            android:textAppearance="?android:attr/textAppearanceLarge" />
    </TableRow>
    

    和我的布局

    <ScrollView
        android:id="@+id/main_scroll_view"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    
        <RelativeLayout
            android:id="@+id/main_ScrollView_Container"
            android:orientation="vertical" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
    
    
        </RelativeLayout>
    </ScrollView>
    

1 个答案:

答案 0 :(得分:2)

首先,您应该使用R.layout而不是R.xml来组织和引用您的布局文件。仅在您的项目中就有许多类型的xml资源 - 将它们分类是个好主意。

其次,当您致电relativeLayout.addView(tableRow, 0);时,您实际上是在布局的第0个位置添加tableRow(顶部)。此外,由于您要将行添加到RelativeLayout中,因此将它们堆叠在彼此之上并不奇怪。您可能希望使用垂直方向的LinearLayout,它将负责从上到下垂直排列行。

第三,一旦你夸大你的行视图,就可以访问它的子视图:

View tableRow = inflater.inflate(R.xml.my_row, relativeLayout, false);
EditText inputBox = (EditText) tableRow.findViewById(R.id.input);
TextView outputBox = (TextView) tableRow.findViewById(R.id.output);

请注意,您可以在任何findViewById上致电View以访问其子视图 - 只要他们有ID。