0

我有一个打开的 onClick 事件和一个用 LayoutInflater 充气的 AlertDialog。我可以单击膨胀的 AlertDialog 中的一个按钮,然后求解一个方程。问题是这个 OnClick 没有响应,就像没有发生任何事情一样。有谁知道为什么?

编辑现在屏幕变黑了,我可以告诉我不再在同一个活动上,因为屏幕没有响应,但视图仍然是原始页面。按下后退按钮使屏幕再次变亮并响应。

lay1.setOnLongClickListener(new OnLongClickListener() {
        public boolean onLongClick(View v)        
        {                     

            LayoutInflater myLayout = LayoutInflater.from(context);
            final View dialogView = myLayout.inflate(R.layout.alerthelp, null);
            AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
            context);


            final AlertDialog alertDialog = alertDialogBuilder.create();
            alertDialogBuilder.setView(dialogView);
            Button button1 = (Button) dialogView.findViewById(R.id.button1);
            button1.setOnClickListener(new OnClickListener(){


            public void onClick(View v) {
                TextView stax1=(TextView)alertDialog.findViewById(R.id.salestax);
                String sax1 = stax1.getText().toString();
                double sx1 = Double.parseDouble(sax1);

                TextView textviewlay1 =(TextView)alertDialog.findViewById(R.id.m1ab);
                String stringl1 = textviewlay1.getText().toString();
                 Double doubl1 = Double.parseDouble(stringl1);  

                TextView textviewp1 = (TextView)alertDialog.findViewById(R.id.inputPrice);
                String stringp1 = textviewp1.getText().toString();
                Double intp1 = Double.parseDouble(stringp1);

                double resultl1 = intp1 - (doubl1*sx1);
                int precision21t = 100; //keep 4 digits
                resultl1= Math.floor(resultl1 * precision21t +.5)/precision21t;
                textViewtotalproduct.setText(String.valueOf(resultl1));     
}); 

 alertDialog.show();
        return true;    




        }});
4

1 回答 1

2

你正在返回false,这意味着长按没有发生。因此,请返回true以使您的长按正常工作。

您还需要打电话alertDialog.show();打开它,回答您的第二个问题。

于 2013-06-27T10:48:12.463 回答