在我的主要活动中,有几个小部件,如编辑文本、文本视图、微调器。我想在从 Activity 调用的类中获取这些小部件值。我该怎么做。
从主要活动调用的不同类中访问所有小部件值
click.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
//Like these i have few more of what i have to get the values
Spinner abc = (Spinner) findViewById(R.id.abc);
Spinner xyz = (Spinner) findViewById(R.id.xyz);
Spinner deg = (Spinner) findViewById(R.id.deg);
//This is my class where i want to access all the widgets values and perform some action on that
GetValue obj = new GetValue();
obj.getAllData();
}
});
这是我想做的事情,请帮助我,我不明白我怎么能这样做。我必须在函数中传递什么值才能获取值。谢谢