我想得到&通过自定义指令设置元素的高度。 这是代码。
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));
可以在每次点击时调用指令。