我想问我如何将我的两个 TextView 与复选框合并。场景是当我将值放在我的两个 EditText 上时,这些值将分别显示在两个 TextView 上,但我希望在我点击保存时自动添加复选框。我希望你能得到我的问题。这是我的代码:
适配器
public String getData(String columnIndex) {
// TODO Auto-generated method stub
String[] columns = new String[]{ KEY_ITEMID, KEY_ITEM, KEY_QTY};
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, null, null, null, null, null);
String resultQty = "";
int iQty = c.getColumnIndex(columnIndex);
for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()){
resultQty = resultQty + c.getString(iQty) + "\n";
}
return resultQty;
}
我的 onCreate 方法
TextView tv = (TextView) findViewById(R.id.tvSQLinfo);
Grocery info = new Grocery(this);
info.open();
String data = info.getData(KEY_ITEM);
info.close();
tv.setText(data);
TextView tvQty = (TextView) findViewById(R.id.tvItemQty);
Grocery infoQty = new Grocery(this);
infoQty.open();
String dataQty = infoQty.getData(KEY_QTY);
infoQty.close();
tvQty.setText(dataQty);
CheckBox android = (CheckBox) findViewById(R.id.chkStat);
android.setChecked(false);
onClick(tvQty);
我的 XML 代码
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="@string/tvSQLinfo"
android:id="@+id/tvSQLinfo"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:paddingLeft="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:text="itemQty"
android:id="@+id/tvItemQty"
android:paddingLeft="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
<CheckBox
android:id="@+id/chkStat"
android:paddingLeft="30dp"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text=""/>
</LinearLayout>