【问题标题】:Android TableLayout Add new Row with data from EditText by clicking a buttonAndroid TableLayout 通过单击按钮添加带有来自 EditText 的数据的新行
【发布时间】:2026-01-04 11:45:02
【问题描述】:

我在MainActivity 上有一个空的tablelayout 设置,我还有另一个名为Add_Item 的活动,其中我有一些EditText,用户可以在其中提交信息以添加到tablelayout。我坚持的部分是每次用户按下保存按钮时如何将插入EditText的数据实际保存到新行中。是否有关于如何使用示例代码执行此操作的教程?我只找到我不需要的带有 sql 的。下面是我到目前为止的 XML 和 Add_Item 活动的代码

//Add_Item 活动

package com.example.moduleonesimpleapplication;

import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Spinner;

public class Add_Item extends ActionBarActivity {
    //variables
    EditText TaskNameET;
    Spinner SpinType;
    Button SaveTodo;
    String SpinnerOptions[] = {"OptionOne", "OptionTwo", "OptionThree"};


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_add__item);

        //define vars
        TaskNameET = (EditText) findViewById(R.id.TaskNameET);
        SpinType = (Spinner) findViewById(R.id.spinner1);
        SaveTodo = (Button) findViewById(R.id.button1);

        //adapter for spinner
        ArrayAdapter<String> ard=new ArrayAdapter<String>(this,android.R.layout.simple_dropdown_item_1line, SpinnerOptions);
        SpinType.setAdapter(ard);

        //onclick todobutton
        SaveTodo.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                //here is the save button, I would like to save the information inputted from the TaskNameET EditText Into the TableLayout
                // I have the tablelayout defined as TableRow
                //MainActivity.this.TableRow.setTextAlignment();
                Add_Item.this.TaskNameET.getText().toString();
            }
        });
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.add__item, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

//用于表格布局的 XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_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="com.example.moduleonesimpleapplication.MainActivity" >

    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:text="@string/AddItemButton" />

    <TableLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" >

       <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

        </TableRow>

        <TableRow
            android:id="@+id/tableRow2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

        <TableRow
            android:id="@+id/tableRow3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </TableRow>

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

</RelativeLayout>

【问题讨论】:

    标签: android android-layout android-edittext tablelayout


    【解决方案1】:

    你的直觉告诉你吗?它现在应该告诉你,你所遵循的这种方法是一个死胡同,一个障碍。好吧,从技术上讲,您破解并动态地将行添加到TableLayout,但这一切都将是......一个黑客。为什么?因为,Android SDK 附带了更好的选项和功能。

    无论哪种方式,您都需要以某种方式保存用户输入的数据。虽然 sqlite 不是唯一的选择,但 IMO,它是最具可扩展性的解决方案。这里有一些想法......

    • 忘记 TableLayout 改用 ListView
    • 如果不需要在不同的应用程序会话中持久化并且数据不是很大,则将使用输入的数据存储在内存中
    • 将数据存储在文件或首选项中(如果需要持久化并且不是很大)
    • 存储在 SQLite 数据库中...强烈推荐

    现在,继续使用我上面指出的术语在谷歌上搜索一些教程,但不要在这里要求教程,因为它违反了本网站的使用条款。祝你好运

    【讨论】:

    • 该死!我以前使用 ListView,但我试图向其中添加列,所以有人建议我使用 TableLayout,因为它会自动有列。这有点令人沮丧,但谢谢,我会做更多的研究。
    • ListView 三列是否与 TableLayout 类似?
    • @ssj3goku878 您可以自定义ListView,如果为其项目定义自定义布局,则可以随意查看
    最近更新 更多