我在tablelayout
上设置了一个空的MainActivity
设置,我还有另一个名为Add_Item
的活动,其中我有一些EditText
用户可以提交信息以添加到tablelayout
。我坚持的部分是每次用户按下保存按钮时如何将插入EditText
的数据实际保存到新行中。有没有关于如何使用示例代码执行此操作的教程?我只找到我不需要的sql。下面是我到目前为止的XML和Add_Item
活动
// Add_Item Activity
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);
}
}
//用于tablelayout的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>
答案 0 :(得分:2)
有你的直觉吗?现在应该告诉你,你所遵循的这种方法是一个死路,一个障碍。好吧,从技术上讲,你破解了你的方式,并动态地向TableLayout
添加行,但这一切都将是......一个黑客。为什么?因为,Android SDK附带了更好的选项和功能。
无论哪种方式,您都需要以某种方式持久保存用户输入的数据。虽然sqlite不是IMO的唯一选择,但它是最具扩展性的解决方案。以下是一些想法......
TableLayout
使用ListView
代替现在,继续使用上面提到的条款谷歌一些教程,但不要在这里要求教程,因为它违反了本网站的使用条款。祝你好运