Привет, у меня есть пользовательский просмотр списка, и я пытаюсь начать новое действие по нажатию кнопки, однако происходит, когда я пытаюсь установить намерение, я думаю, это потому, что мой пользовательский класс массива не расширяет активность. Кнопки вызывают срабатывание будильника. Могу ли я получить намерение работать в этом классе?
Ниже приведен мой код для класса.
public class customArray extends ArrayAdapter<String> {
SatMain sm = new SatMain();
int resource;
public customArray(Context cont, int _resource, List<String> items) {
super(cont, _resource, items);
resource = _resource;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
RelativeLayout rl;
String prod = getItem(position);
if (convertView == null) {
rl = new RelativeLayout(getContext());
LayoutInflater vi = (LayoutInflater) getContext().getSystemService(
Context.LAYOUT_INFLATER_SERVICE);
vi.inflate(resource, rl, true);
} else {
rl = (RelativeLayout) convertView;
}
TextView t1 = (TextView) rl.findViewById(R.id.text12);
t1.setText(prod);
final Button b1 = (Button) rl.findViewById(R.id.widget29);
b1.setText("efwrf");
if (position == 2) {
b1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent(customArray.class, SatMain.class);
startActivity(intent);
b1.setText("alarm set");
}
});
}
if (position == 0) {
b1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
}
});
b1.setText("number 0");
}
return rl;
}
}