我有一個Android的ListView和它有一個two_line_list_item佈局....文本1和文本的毗連結果到一個單一的列表視圖元素
我有一個SQL查詢返回了我....光標在下面的例子我已經設置NAMEA從SQL到文本1和NameB到文本2
// Create an array to specify the fields we want to display in the list (only TITLE)
String[] from = new String[]{"NameA", "NameB"};
// and an array of the fields we want to bind those fields to (in this case just text1)
int[] to = new int[]{android.R.id.text1, android.R.id.text2};
// Now create a simple cursor adapter and set it to display
SimpleCursorAdapter matches = new SimpleCursorAdapter(this, android.R.layout.two_line_list_item, MatchesCursor, from, to);
setListAdapter(matches);
我怎麼能去有關串聯的兩個名字(不更改我的SQL查詢),所以文本1將「NAMEA v NameB」 ...
在此先感謝