我有一个按钮“提交”,我想在静态方法中创建“submit.performclick”,我试过但我不能,帮助我克服这个问题,还有一件事,在那个点击动作中,可能有任何非静态方法..但我想让按钮点击。
new_btn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
CallingDataBase("fm Btn","from button");
ClearMemory();
}
});
public void CallingDataBase(String mobileNumber, String mobileMessage)
{
us = mobileNumber;
pa = mobileMessage;
insertion(us,pa);
CallingCustomAdapter();
}
//this static method was the first calling method.
public static void updateMessageBox(String mobileNum12, String mobileMessa12,Context context)
//I get parameters for this method from another class.
{
// SMS smsClass = new SMS(); // SMS was my Class Name`
// smsClass.function(context);
// from here i want to call button action
}