2
您好,我試圖設置內容描述到我的按鈕購買時,當我嘗試訪問它的返回給我的值爲空。將內容描述設置爲圖像按鈕的問題
這裏是按鈕的代碼。
//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());
}
});
}