こんにちは私はボタン購入にコンテンツの説明を設定しようとしていますが、それにアクセスしようとすると、返される値はnullになります。
これがボタンのコードです。
//This is the button of the payment.
ImageButton make_pay = new ImageButton(this);
make_pay.setBackgroundResource(R.drawable.add_product);
makePay.addView(make_pay);
makePay.setContentDescription("Precio");
これは私がアクセスするために使用するコードです:
make_pay.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View makepay) {
LinearLayout wrap_area = (LinearLayout)findViewById(R.id.division2);
TextView test = new TextView(FrontActivity.this);
wrap_area.addView(test);
if (makepay.getContentDescription() == null){
test.setText("Precio:1");
}else{
test.setText(makepay.getContentDescription().toString());
}
});
}