此处的功能是向public MyActivity implements View.OnClickListener{ //ensure that you impleemnt this!
TextView tv;
public void onCreate(){
setContentView(...);
tv = (TextView) findViewById(R.id.your_text_view_id);
tv.setOnClickListener(this);
... // all the other stuff
}
@Override
public void onClick(View v){
if(v.getId() == R.id.button1)
tv.setText("Customer 1");
.... //do the same for customer 2
}
}
中指定的用户发送邮件
下面的代码与API 19一起工作得很好,但是没有使用上面的API 19,有人可以告诉我为什么吗?
这是代码:
taskmail
它给了我上面这个栏,然后在我关闭应用程序之前什么也没发生
答案 0 :(得分:0)
这是我在之前项目中使用的确切代码,它在API 22上运行得非常好
error: unknown type name 'NSString'; did you mean 'GString'?