技术开发 频道

Hello, OPhone!

  输出结果

  下面的代码把查询结果显示在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);
        }
    }
}
  

  

0
相关文章