English 中文(简体)
与机器人一起动态显示数据
原标题:dynamically display data with android

我已写入一个布局文件, 以显示我从查询数据库中获得的数据。 您如何在文本视图中播放此数据? 此文件的目的是显示动态内容, 而不是资源文件中定义的静态直线预设 。

我真的不想写

 TextView x = new TextView();
 x.setText("...");
 x.setGravity("");
 x...

既然这是真的重复, 我必须重做所有我想显示的数据, 并且所有的数据都已经格式化为 xml 文件 。

我的数据库函数调用返回光标对象,我想我可以使用

SimpleCursorAdapter();

但我似乎找不到 发送到文本视图的文件

有人有什么建议吗?

问题回答

说, 您在 XML 中定义了文本查看, 以 id < enger> tv 定义

TextViewById(R.id.tv); t= (TextView) findViewById(R.id.tv);

并要在从数据库查询后设置文本。

假设,您有一个表格,有两个A和B栏,并使用一个查询方式,例如:

  String q = "SELECT * FROM table_name where(your_condition)";
  Cursor c = db.rawQuery(q, null);

说您想要使用列的值 < 加强> A , 使用 < code> c. getString (c. get ColumnIndex ("A"));

使用光标c如下:

  if(c.getCount() == 0)
                  {

            //no data found
                  }
                  else  {
                      String j="";
                      c.moveToFirst();
                      do {
                          String cm = c.getString(c.getColumnIndex("A"));
                                             j = j+cm;   
                          } while (c.moveToNext());
                      c.close();

现在将此文本设置为您的 TextBox( 动态 : D) :

t.setText(j);  

这是完整的样本 : < a href=" http://www.mediafire.com/?569on9rvb4qoa7w" rel = "nofollow" > Database Project 由我(使用简单的方法)来尝试。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签