-3
View view = View.inflate(this, R.layout.card_scroll_item, null);
viewFlipper.addView(view);
Button creditbtn = (Button) view.findViewById(R.id.credit_button);
creditbtn.setBackgroundResource(carddraw[i]);
TextView txtname = (TextView) view.findViewById(R.id.credit_type);
txtname.setText("Visa");
TextView txtnumber = (TextView) view.findViewById(R.id.credit_number);
txtnumber.setText(creditnum[i]);
txtnumber.setTypeface(tf);`

このコードを使用して、各ボタンのクリックイベントを取得しました

4

2 に答える 2

0

まず、ボタンの onClick リスナーを次のように設定する必要があります。

creditbtn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // Do your actions here             
        }
    });

次に、最初に調査してから質問する必要があります:)

これが役に立ち、あなたの仕事を楽しんでくれることを願っています。

于 2013-05-31T09:05:49.810 に答える