我正在尝试在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岁
有什么帮助吗?
答案 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);