将内容描述设置为图像按钮时出现问题

时间:2012-07-15 18:41:20

标签: android android-widget android-view

您好我正在尝试设置内容说明到我的按钮购买当我尝试访问它时返回给我的值为空。

这是按钮的代码。

//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());
            }
        });
}

1 个答案:

答案 0 :(得分:4)

您正在将内容描述设置为makePay对象(无论它是什么,可能是ViewGroup)。但是,您将侦听器设置为make_pay ImageButton,这是侦听器参数接收的。因此,它的内容描述不是分配给另一个对象的内容。

尝试更改此内容:

makePay.setContentDescription("Precio");

用这个:

make_pay.setContentDescription("Precio");

无论如何,尽量不要以类似的方式命名对象。这可能会导致很大的困扰。