Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个列表视图,其行有一个文本视图和一个复选框。
我想弹出与复选框关联的名称,然后单击一个按钮,我想将所有 textview 数据存储到数据库中。我该怎么做?
尝试这样的事情:
if (checkBox.isChecked()) { View view = listview.getChildAt(position); TextView text = (TextView)view.findViewById(R.id.myTextBox); String contents = text.getText().toString(); }
您需要将 if 语句调整为您自己的复选框并遍历它们以检查它们是否已检查并将 if 语句中的代码重命名为您的 oen 名称