如何在单击按钮时在Android中获取复选框,带有ListView值的EditText? [英] How to get checkbox,EditText with ListView values in android while clicking a button?

查看:53
本文介绍了如何在单击按钮时在Android中获取复选框,带有ListView值的EditText?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Android世界的新宠.我有一个listview,其中具有复选框和EditText.当我在列表视图中显示记录时,我将选中该复选框并在editText字段中输入文本.我将在同一行中做很多行.我有一个名为保存"的按钮.使用这个,我想用新添加的文本和复选框值保存listview的详细信息.单击保存按钮时,我不知道如何获取值.请指导我.这是代码.

I m a new bee to Android world. I have a listview which has checkbox and EditText in it. When I display records in the listview, I will check the checkbox and enter text in the editText field. I will do in many rows in the same. I have a button called Save. Using this I want to save the details of listview with newly added text and checkbox value. I do not know how to get the values when i click the save button. Please guide me. Here is the code.

main.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/TextView01" android:layout_height="wrap_content"
    android:text="List of items" android:textStyle="normal|bold"
    android:gravity="center_vertical|center_horizontal"
    android:layout_width="fill_parent"></TextView>
<ListView android:id="@+id/ListView01" android:layout_height="wrap_content"
    android:layout_width="fill_parent">
</ListView>
<Button android:text="Save" android:id="@+id/btnSave"
    android:layout_width="wrap_content" android:layout_height="wrap_content">
</Button>
</LinearLayout>

listview.xml:

listview.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:gravity="left|center"
android:layout_width="wrap_content" android:paddingBottom="5px"
android:paddingTop="5px" android:paddingLeft="5px">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:gravity="center"
    android:textColor="#FFFF00" android:text="hi"></TextView>
<TextView android:text="hello" android:id="@+id/TextView02"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    android:layout_marginLeft="10px" android:textColor="#0099CC"></TextView>
<EditText android:id="@+id/txtbox" android:layout_width="120px"
    android:layout_height="wrap_content" android:textSize="12sp"
    android:layout_x="211px" android:layout_y="13px">
</EditText>
<CheckBox android:id="@+id/chkbox1" android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</LinearLayout>

CustomListViewActivity.java:

CustomListViewActivity.java:

package com.listivew;

import android.app.Activity;
import android.app.ListActivity;
import android.os.Bundle;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;

public class CustomListViewActivity extends ListActivity {
ListView l1;
static Context mContext;
Button btnSave;
private static class EfficientAdapter extends BaseAdapter {
    private LayoutInflater mInflater;

    public EfficientAdapter(Context context) {
        mInflater = LayoutInflater.from(context);

    }

    public int getCount() {
        return country.length;
    }

    public Object getItem(int position) {
        return position;
    }

    public long getItemId(int position) {
        return position;
    }

    public View getView(int position, View convertView, ViewGroup parent) {
        final ViewHolder holder;
        if (convertView == null) {
            convertView = mInflater.inflate(R.layout.listview, parent,
                    false);
            holder = new ViewHolder();
            holder.text = (TextView) convertView
                    .findViewById(R.id.TextView01);
            holder.text2 = (TextView) convertView
                    .findViewById(R.id.TextView02);
            holder.txt = (EditText) convertView.findViewById(R.id.txtbox);
            holder.cbox = (CheckBox) convertView.findViewById(R.id.chkbox1);

            convertView.setTag(holder);
        } else {
            holder = (ViewHolder) convertView.getTag();
        }

        holder.text.setText(curr[position]);
        holder.text2.setText(country[position]);
        holder.txt.setText("");
        holder.cbox.setChecked(false);

        return convertView;
    }

    public class ViewHolder {
        TextView text;
        TextView text2;
        EditText txt;
        CheckBox cbox;
    }
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    l1 = (ListView) findViewById(R.id.ListView01);
    l1.setAdapter(new EfficientAdapter(this));
    btnSave = (Button)findViewById(R.id.btnSave);
    mContext = this;

    btnSave.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            // I want to print the text which is in the listview one by one. 
            //Later i will insert it in the database
            Toast.makeText(getBaseContext(), "EditText Value, checkbox value and other values", Toast.LENGTH_SHORT).show();

        }
    });
}

private static final String[] country = { "item1", "item2", "item3",
        "item4", "item5", "item6" };
private static final String[] curr = { "1", "2", "3", "4", "5", "6" };

}

推荐答案

尝试一下,

btnSave.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
         for (int i = 0; i <l1.getCount() ; i++) {
             View vListSortOrder;
                    vListSortOrder=l1.getChildAt(i);     
                    try{
                    EditText edit=(EditText)vListSortOrder.findViewById(R.id.share_comment_edit);
                   String temp=edit.getText().toString();

        }
      }
    });

类似地为您的CheckBox创建一个对象并获取其状态.简单的.

Similarly create a object for your CheckBox and get its state. Simple.

这篇关于如何在单击按钮时在Android中获取复选框,带有ListView值的EditText?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆