得到&在自定义指令中以angularJs设置元素高度

时间:2017-02-08 07:01:11

标签: angularjs

我想得到&通过自定义指令设置元素的高度。 这是代码。

 if (check.isChecked()) {
                TextView tv1_chq = (TextView)    popupView.findViewById(R.id.subname3);
                TextView tv2_chq = (TextView) popupView.findViewById(R.id.subtotal3);
                tv1_chq.setText("CHEQUE AMOUNT:");


                Double sum_cheque = Double.parseDouble(totalamt_checknew.getText().toString());

                    if (rootlayout_check.getChildCount() > 0) {
                        for (int i = 0; i <= rootlayout_check.getChildCount() - 1; i++) {
                            View v;
                            v = rootlayout_check.getChildAt(i);
                            EditText et3 = (EditText) v.findViewById(R.id.checktotal);
                            sum_cheque = sum_cheque + Double.parseDouble(et3.getText().toString());
                        }

            }
                tv2_chq.setText(String.valueOf(sum_cheque));

可以在每次点击时调用指令。

0 个答案:

没有答案