输出结果
下面的代码把查询结果显示在TextView之中:
package oms.hello;
import ...
import android.widget.TextView;
public class HelloOPhone extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
...
// step 3: output the result to the TextView
if (searchResult != null) {
TextView tv = (TextView) findViewById(R.id.textview);
tv.setText(searchResult);
}
}
}
import ...
import android.widget.TextView;
public class HelloOPhone extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
...
// step 3: output the result to the TextView
if (searchResult != null) {
TextView tv = (TextView) findViewById(R.id.textview);
tv.setText(searchResult);
}
}
}