- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的复选框列表正在显示,但我想检查一些将保存在 xml 中以供进一步使用的列表项。如何?这是我的列表代码,首选项 .. 请用代码向我解释它将如何保存我的复选框列表。
public class MachinesCheck extends Activity implements IObserver {
private StringBuffer buffer = new StringBuffer();
private ListView mainListView ;
private ArrayList<Machine> Machines ;
private ArrayList<Machine> SelectedMachines ;
private ArrayAdapter<Machine> listAdapter ;
Vector<MDCMachineStatus> machineStatus_vector;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.machinecheck);
SelectedMachines = new ArrayList<Machine>();
MachineStatusSingleton.Register(this);
getData();
// Find the ListView resource.
mainListView = (ListView) findViewById( R.id.mainListView );
// When item is tapped, toggle checked properties of CheckBox and Planet.
mainListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
public void onItemClick( AdapterView<?> parent, View item,
int position, long id) {
Machine machine = listAdapter.getItem( position );
machine.toggleChecked();
MachineViewHolder viewHolder = (MachineViewHolder) item.getTag();
viewHolder.getCheckBox().setChecked( machine.isChecked() );
if (machine.checked)
{
SelectedMachines.add(machine);
}
else
{
SelectedMachines.remove(machine);
}
}
});
listAdapter = new MachineArrayAdapter(this, Machines);
mainListView.setAdapter( listAdapter );
mainListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
}
private void getData(){
machineStatus_vector = MachineStatusSingleton.GetData();
//arrayListofMachines = new ArrayList<String>();
//arrayListofMachineNumbers = new ArrayList<String>();
Machines = new ArrayList<Machine>();
for(MDCMachineStatus temp: machineStatus_vector){
//arrayListofMachines.add(temp.toString());
//arrayListofMachineNumbers.add(temp.getNumber());
Machines.add(new Machine(temp.toString(), temp.getNumber()));
}
}
private static class Machine {
private String name = "" ;
private String number ="";
private boolean checked = false ;
public Machine() {}
public Machine( String name, String number ) {
this.name = name ;
this.number = number ;
}
public Machine( String name, boolean checked ) {
this.name = name ;
this.checked = checked ;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
public boolean isChecked() {
return checked;
}
public void setChecked(boolean checked) {
this.checked = checked;
}
public String toString() {
return name ;
}
public void toggleChecked() {
checked = !checked ;
}
}
private static class MachineViewHolder {
private CheckBox checkBox ;
private TextView textView ;
public MachineViewHolder( TextView textView, CheckBox checkBox ) {
this.checkBox = checkBox ;
this.textView = textView ;
}
public CheckBox getCheckBox() {
return checkBox;
}
public void setCheckBox(CheckBox checkBox) {
this.checkBox = checkBox;
}
public TextView getTextView() {
return textView;
}
public void setTextView(TextView textView) {
this.textView = textView;
}
}
private static class MachineArrayAdapter extends ArrayAdapter<Machine> {
private LayoutInflater inflater;
public MachineArrayAdapter( Context context, List<Machine> machineList ) {
super( context, R.layout.selectedlist, R.id.rowTextView, machineList );
// Cache the LayoutInflate to avoid asking for a new one each time.
inflater = LayoutInflater.from(context) ;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Machine to display
Machine machine = (Machine) this.getItem( position );
// The child views in each row.
CheckBox checkBox ;
TextView textView ;
// Create a new row view
if ( convertView == null ) {
convertView = inflater.inflate(R.layout.selectedlist, null);
// Find the child views.
textView = (TextView) convertView.findViewById( R.id.rowTextView );
checkBox = (CheckBox) convertView.findViewById( R.id.CheckBox01 );
// Optimization: Tag the row with it's child views, so we don't have to
// call findViewById() later when we reuse the row.
convertView.setTag( new MachineViewHolder(textView,checkBox) );
// If CheckBox is toggled, update the planet it is tagged with.
checkBox.setOnClickListener( new View.OnClickListener() {
public void onClick(View v) {
CheckBox cb = (CheckBox) v ;
Machine machine = (Machine) cb.getTag();
machine.setChecked( cb.isChecked() );
}
});
}
// Reuse existing row view
else {
// Because we use a ViewHolder, we avoid having to call findViewById().
MachineViewHolder viewHolder = (MachineViewHolder) convertView.getTag();
checkBox = viewHolder.getCheckBox() ;
textView = viewHolder.getTextView() ;
}
// Tag the CheckBox with the Planet it is displaying, so that we can
// access the planet in onClick() when the CheckBox is toggled.
checkBox.setTag( machine );
// Display planet data
checkBox.setChecked( machine.isChecked() );
textView.setText( machine.getName() );
return convertView;
}
}
public Object onRetainNonConfigurationInstance() {
return Machines ;
}
public void Update(ISubject arg0) {
// TODO Auto-generated method stub
}
}
这是我的偏好,请检查并告诉我它是如何保存数据 im xml 文件的。
<PreferenceScreen
android:key="DataEntryScreen"
android:title="Data Entry Machine"
android:summary="Select a Machine">
</PreferenceScreen>
最佳答案
尝试使用此代码创建 xml,使用此字符串保存它并将其写入文件。
private static StringWriter createXml(ArrayList<Machine> SelectedMachines) {
StringWriter writer = new StringWriter();
XmlSerializer serializer = Xml.newSerializer();
try {
serializer.setOutput(writer);
serializer.startDocument("UTF-8", true);
serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
serializer.startTag(null, "Machine");
for (Machine machine : SelectedMachines) {
serializer.startTag(null, "Name");
serializer.text(machine.getName());
serializer.endTag(null, "Name");
serializer.startTag(null, "Number");
serializer.text(machine.getNumber());
serializer.endTag(null, "Number");
}
if (serializer == null)
return null;
serializer.endTag(null, "Machine");
serializer.endDocument();
serializer.flush();
writer.close();
} catch (Exception e) {
Log.e("createXml", e.toString());
}
return writer;
}
关于android - 如果单击复选框,我的 list 应该保存在 Xml 中如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9225475/
我在选项卡中有我的网络应用程序的选项。 aaa bbb ccc ddd eee 当用户单击任何选项卡(在同一窗口中)时,我会使用此代码获得淡出效果,然后自动
如何获得一个简单的调用单击来实现如下功能:http://jsfiddle.net/ftwPS/6/我显然错过了一些基本的东西,因为当您单击“CLICK”时这不起作用。 $('tr').click(fu
我有一个列表,在左侧显示一个插入符号图标,单击它时应该更改图标。每当我单击一个图标时,所有图标都会更改。 detailedInfo = []; subordinateInfo; openSu
我有一个 div,我想对其进行设置,以便当我单击其他内容时,它会隐藏该 div。 我也是这样 $('body').click(function(){ if(loginOpened) {
我有很多装有不同内容的盒子。 如果单击第一个框,您可以看到一个包含更多详细信息的弹出框。如果单击第二个、第三个等框,您必须查看这些框的详细信息。 我的问题:如果我点击框号。 2 我看到了盒子号的详细信
当我点击 .add-btn 时,我将 .add-btn 的样式更改为 background:#cccccc 并将 val() 更改为“-”。 现在当我用 tr td .list 删除添加的文本时,它是
感谢 SO 的出色贡献者!当您开始了解 jQuery 时,它会变得更酷。 :) 所以我有一个 LI,单击时会显示/隐藏子 UL。我想做的是能够单击 LI 内的链接,打开一个空白窗口,但也不会关闭子 U
我有这份文档,它使我能够获得一份带有点击进度的多项选择选择调查问卷。 如何用图像代替此处的文字? (并且仍然有这样的机制,一旦单击[图像],就会提出下一个问题) 我已经尝试使用 UL/H1 设置背景图
我想在 JQGrid 的刷新按钮单击上编写代码。有什么事件吗? 最佳答案 如果您需要在开始刷新之前执行一些操作,您应该使用 beforeRefresh打回来: $("#grid_id").jqGrid
问题是将对象或多个参数从模板传递到组件,并使用它们将数据添加到 API。 任务.service.ts addTasks(task: Task): Observable{ let headers =
我有一个像这样的primefaces选项卡 View : This tab has static content. this t
我在 jquery 中有一个有效的 a.click() 函数...但是如果我单击一个 anchor ,我会打开一个新窗口...但是我怎样才能阻止浏览器本身打开一个新窗口? 示例: $('a')
有没有简单的方法来创建代码:如果 URL 更改或单击链接显示 div(例如加载 gif 3 秒),则显示页面?有点像空白的白色页面,加载 gif 旋转 3 秒然后显示页面? 谢谢! 最佳答案 给定 G
我需要知道此时按钮的状态是否被点击? 谢谢 最佳答案 if (myButton.state & UIControlStateHighlighted) { // Do your stuff the
我正在 NSImageView 上绘制一条 NSBezierPath 线。我正在创建 NSBezierPath 对象,设置 moveToPoint,设置 lineToPoint,设置 setLineW
我的 Selenium 代码存在问题,无法正确执行按键 + 单击操作。 测试应打开 jqueryui.com 链接并选择页面上的前 2 个 li 元素。 我正在使用 Selenium 2.23 和 F
单击时我将更改字符串一部分的样式。例如“TEXT”,然后单击“T”,之后它会将样式从黑色更改为红色,仅 T在我的代码中,当我单击文本时,我拆分文本并保留在“split”数组中,它将调用handleCl
我在网站上有一个 anchor 。当有人点击它时,我在 jquery 中执行一些操作并更改名称,但是当再次单击它时,事件被触发,尽管我已经更改了它的名称。代码在这里: $(".like_cont a[
我有一个下载链接Download我希望每次当有人点击“下载”时,我都可以将其插入数据库total_downloads+1。为了插入数据库,我通常使用 然后 if (isset($_POST['d
我是一名优秀的程序员,十分优秀!