Android TableLayout通过单击按钮从EditText添加带有数据的新行



我在MainActivity上有一个空的tablelayout设置,我有另一个名为Add_Item的活动,其中我有一些EditText,用户可以在其中提交信息以添加到tablelayout。我一直关注的部分是如何在用户每次按下保存按钮时将插入EditText的数据实际保存到新行中。有没有关于如何使用示例代码做到这一点的教程?我只找到那些我不需要的带有sql的。以下是迄今为止我拥有的XML和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>

你的直觉告诉我们了吗?它现在应该告诉你,你所遵循的这种方法是一条死胡同,一个路障。好吧,从技术上讲,你可以破解并动态地向TableLayout添加行,但这就是全部……破解。为什么?因为,Android SDK提供了更好的选项和功能。

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

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

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

最新更新