什么用于切换到程序中的下一列
Posted
技术标签:
【中文标题】什么用于切换到程序中的下一列【英文标题】:what is use for switching to next column in programs 【发布时间】:2017-06-28 17:37:48 【问题描述】:/t 用于制表符 /n 用于下一行,然后用于下一列
【问题讨论】:
这很容易被 google 找到... 尝试自己寻找答案,你会惊奇地发现自己能做什么 :) 【参考方案1】:1.更改你的读取类的返回类型以获取其他活动中的数据
2.创建数据库类的对象并从该对象读取数据示例 YourDBClass db=new YourDBClass(); String[] 结果=db.read();
【讨论】:
【参考方案2】:public void read(View v)
Cursor c = dBase.query("employee", null, "id=?", new String[]ET1.getText().toString(), null, null, null);
while (c.moveToNext())
Toast.makeText(getApplicationContext(),
c.getInt(0) + "\n" +
c.getString(1) + "\n" +
c.getString(2) + "\n" +
c.getString(3),
Toast.LENGTH_LONG).show();
ET1.setText("" + c.getInt(0));
ET2.setText("" + c.getString(1));
ET3.setText("" + c.getString(2));
ET4.setText("" + c.getString(3));
Intent i = new Intent(this, AnotherActivity.class);
i.putExtra("1", "");
i.putExtra("2", "");
i.putExtra("3", "");
i.putExtra("4", "");
startActivity(i);
/*write this Code in another activity after SetContentView(); to display data */
Log.e("1", getIntent().getStringExtra("1"));
Log.e("2", getIntent().getStringExtra("2"));
Log.e("3", getIntent().getStringExtra("3"));
Log.e("4", getIntent().getStringExtra("4"));
【讨论】:
** 在这个应用程序中被淘汰 我想要一个我插入的数据列表以上是关于什么用于切换到程序中的下一列的主要内容,如果未能解决你的问题,请参考以下文章
如何等待http请求在处理到angular 7中的下一步之前获得响应[重复]