在EditText中以多行显示

时间:2013-02-23 17:14:12

标签: java android sqlite android-edittext

我正在尝试在EditBox中的dataBase中显示一行。但我遇到了问题。 到目前为止,我的代码是

public void ViewEmployeeButton (View view)
{
    DatabaseHandler db = new DatabaseHandler(this);
    Employee e1 = new Employee();       
    EditText et=(EditText) findViewById(R.id.employeeId);
    EditText detailEmp=(EditText) findViewById(R.id.detailEmployee);
    int id=Integer.getInteger(et.getText().toString());
    e1=db.getEmployee(id);
    detailEmp.setText(???)
}

员工具有Getid, GetName, GetUsername, GetPassowrd, GetAge的功能,该功能将返回Strings。 现在在setText的参数中写什么? 所以outout是多行。

在数据库中,Row就像:

1 kiran密码KiranTauqir 21

我希望输出像

id 1 用户名kiran 密码密码 名字KiranTauqir 21岁

有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

您可以只检索所有列值并将它们与新行字符一起附加到字符串:" \ n"。

示例代码可能如下所示:

    int i=0;
    String output;
    while(i<e1.getColumnCount())
    {
           output.append(e1.getString(i) +"\n");   //getString(i) will return the value of particular column
           i++;
    }
    detailEmp.setText(output);