在android中,我正在尝试使用以下方法添加checktextview:
CheckedTextView checkedtextview = new CheckedTextView(this, null, android.R.attr.listChoiceIndicatorMultiple);
checkedtextview.setText(personobj.lastname + ", " + personobj.firstname);
LocationLayout.addView(checkedtextview);
但是当我测试它时,它只显示文本,我没有看到复选框。有谁知道如何显示复选框?
谢谢。