1

我将从数据库(MySQL)中检索学生信息(id -number-name)作为列表视图,每个学生有 2 个按钮(删除 - 警报)和单选按钮

屏幕截图 http://im21.gulfup.com/1pWi1.png

一切都很好,但是我怎样才能制作一个 onClickListener,例如删除按钮,因为我尝试了很多示例,我听说我可以使用(自定义列表或获取视图或直接 onClickListener,就像在我的代码中一样(但它不是工作)或简单光标适配器)我不知道该使用什么,我四处寻找可以帮助我的示例,但就我而言,但我没有找到任何示例,所以我希望这可以作为任何有相同问题的人的参考。这是我的代码,我直接使用 onClick 和简单适配器

public class ManageSection extends ListActivity {

//ProgresogressDialog pDialog;

    private ProgressDialog pDialog;

    // Creating JSON Parser object

// Creating JSON Parser object
JSONParser jParser = new JSONParser(); //class
boolean x =true; 
Button delete;

ArrayList<HashMap<String, String>> studentList;

//url to get all products list
private static String url_all_student = "http://10.0.2.2/SmsPhp/view_student_info.php";
String cl;
// JSON Node names
private static final String TAG_SUCCESS = "success";
private static final String TAG_student = "student";
private static final String TAG_StudentID = "StudentID";
private static final String TAG_StudentNo = "StudentNo";
private static final String TAG_FullName = "FullName";
private static final String  TAG_Avatar="Avatar";
HashMap<String, String> selected_student;
// course JSONArray
JSONArray student = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.manage_section);

        studentList = new ArrayList<HashMap<String, String>>();

        ListView list1 = getListView();
        list1.setAdapter(getListAdapter());  
        list1.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> adapterView, View view, int pos, long l) {

                 selected_student =(HashMap<String, String>) studentList.get(pos); //member of your activity.
                 delete =(Button)view.findViewById(R.id.DeleteStudent);
                 cl=selected_student.get(TAG_StudentID);
                 Toast.makeText(getBaseContext(),cl,Toast.LENGTH_LONG).show();
                 delete.setOnClickListener(new View.OnClickListener()

                    {

                        public void onClick(View v) {

                            Log.d("id: ",cl);
                            Toast.makeText(getBaseContext(),cl,Toast.LENGTH_LONG).show();
                        }
                 });
            }

        });

        new LoadAllstudent().execute();

    }

    /**
     * Background Async Task to Load all student by making HTTP Request
     * */
    class LoadAllstudent extends AsyncTask<String, String, String>
    {

        /**
         * Before starting background thread Show Progress Dialog
         * */
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            pDialog = new ProgressDialog(ManageSection.this);
            pDialog.setMessage("Loading student. Please wait...");
            pDialog.setIndeterminate(false);
        /**
         * getting All student from u r l
         * */
        @Override
        protected String doInBackground(String... args) {
            // Building Parameters
            List<NameValuePair> params = new ArrayList<NameValuePair>();
            // getting JSON string from URL
            JSONObject json = jParser.makeHttpRequest(url_all_student, "GET", params);

            // Check your log cat for JSON response
            Log.d("All student : ", json.toString());

            try {
                // Checking for SUCCESS TAG
                int success = json.getInt(TAG_SUCCESS);

                if (success == 1)
                {
                    // student found
                    // Getting Array of course
                    student = json.getJSONArray(TAG_student);

                    // looping through All courses
                    for (int i = 0; i < student.length(); i++)//course JSONArray
                    {
                        JSONObject c = student.getJSONObject(i); // read first

                        // Storing each json item in variable
                        String StudentID = c.getString(TAG_StudentID);
                        String StudentNo = c.getString(TAG_StudentNo);
                        String FullName = c.getString(TAG_FullName);
                     //   String Avatar = c.getString(TAG_Avatar);
                        // creating new HashMap
                        HashMap<String, String> map = new HashMap<String, String>();

                        // adding each child node to HashMap key => value
                        map.put(TAG_StudentID, StudentID);
                        map.put(TAG_StudentNo, StudentNo);
                        map.put(TAG_FullName, FullName);

                        // adding HashList to ArrayList
                        studentList.add(map);
                    }
                } else {
                    x=false;

                }

            } catch (JSONException e) {
                e.printStackTrace();
            }

            return null;
        }   

        /**
         * After completing background task Dismiss the progress dialog
         * **/
        protected void onPostExecute(String file_url) { 
              // dismiss the dialog after getting all products 
              pDialog.dismiss(); 
              if (x==false)
                Toast.makeText(getBaseContext(),"no student" ,Toast.LENGTH_LONG).show();

              ListAdapter adapter = new SimpleAdapter( 
                      ManageSection.this,  studentList, 
                        R.layout.list_student, new String[] { TAG_StudentID, 
                              TAG_StudentNo,TAG_FullName}, 
                        new int[] { R.id.StudentID, R.id.StudentNo,R.id.FullName}); 
               setListAdapter(adapter); 

             // Updating parsed JSON data into ListView 

        } 
    }
}

那么你怎么看,为什么删除按钮不起作用?我的日志猫没有错误。什么是替代方法?

4

3 回答 3

0

在 ListView 的 onclicklistener 之外添加按钮的 onclicklistener -

list1.setAdapter(new (youradaptername)(getApplicationContext()));
list1.setOnItemClickListener(detaillistener);


private OnItemClickListener detaillistener = new OnItemClickListener()
     {
     // to your Onclick action coding here
     }
     };

对其他按钮做同样的事情。有关更多信息,请转到此处的此链接

于 2012-10-11T08:08:31.810 回答
0

只需在您ListView的 onclicklistener 之外定义按钮的 onclick 侦听器 -

delete =(Button)view.findViewById(R.id.DeleteStudent); // initialize this here

list1.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> adapterView, View view, int pos, long l) 
    {
        selected_student =(HashMap<String, String>) studentList.get(pos); //member of your activity.
        cl=selected_student.get(TAG_StudentID);
        Toast.makeText(getBaseContext(),cl,Toast.LENGTH_LONG).show();
    }
});

delete.setOnClickListener(new View.OnClickListener()
{
    public void onClick(View v) {
        Log.d("id: ",cl);
        Toast.makeText(getBaseContext(),cl,Toast.LENGTH_LONG).show();
    }
});

从您的代码中,ListView一旦单击您的项目,它将起作用,然后只有您的按钮起作用。所以试试上面的代码。

于 2012-10-11T07:54:40.177 回答
0

@sara,您的代码非常正确,但是由于您没有context正确通过..!

现在使用这个代码它肯定会工作:

 ListView list1 = getListView();
    list1.setAdapter(getListAdapter());  
    list1.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> adapterView, View view, int pos, long l) {

             selected_student =(HashMap<String, String>) studentList.get(pos); //member of your activity.
             delete =(Button)view.findViewById(R.id.DeleteStudent);
             cl=selected_student.get(TAG_StudentID);
             Toast.makeText(getBaseContext(),cl,Toast.LENGTH_LONG).show();
             delete.setOnClickListener(new View.OnClickListener()

                {

                    public void onClick(View v) {

                        Log.d("id: ",cl);
                        Toast.makeText(ManageSection.this,cl,Toast.LENGTH_LONG).show();
                    }
             });
        }

    });

我刚刚将这一行添加到您的代码中:

  Toast.makeText(ManageSection.this,cl,Toast.LENGTH_LONG).show();

现在试着告诉我它是否有效..

于 2012-10-12T11:20:24.197 回答