<i id='V0gz3'><tr id='V0gz3'><dt id='V0gz3'><q id='V0gz3'><span id='V0gz3'><b id='V0gz3'><form id='V0gz3'><ins id='V0gz3'></ins><ul id='V0gz3'></ul><sub id='V0gz3'></sub></form><legend id='V0gz3'></legend><bdo id='V0gz3'><pre id='V0gz3'><center id='V0gz3'></center></pre></bdo></b><th id='V0gz3'></th></span></q></dt></tr></i><div id='V0gz3'><tfoot id='V0gz3'></tfoot><dl id='V0gz3'><fieldset id='V0gz3'></fieldset></dl></div>

<small id='V0gz3'></small><noframes id='V0gz3'>

    • <bdo id='V0gz3'></bdo><ul id='V0gz3'></ul>

    1. <legend id='V0gz3'><style id='V0gz3'><dir id='V0gz3'><q id='V0gz3'></q></dir></style></legend>

      1. <tfoot id='V0gz3'></tfoot>

        如何将自定义列表视图设置为对话框

        时间:2023-08-30

        <small id='7VtsH'></small><noframes id='7VtsH'>

          <bdo id='7VtsH'></bdo><ul id='7VtsH'></ul>
        • <legend id='7VtsH'><style id='7VtsH'><dir id='7VtsH'><q id='7VtsH'></q></dir></style></legend>
          • <i id='7VtsH'><tr id='7VtsH'><dt id='7VtsH'><q id='7VtsH'><span id='7VtsH'><b id='7VtsH'><form id='7VtsH'><ins id='7VtsH'></ins><ul id='7VtsH'></ul><sub id='7VtsH'></sub></form><legend id='7VtsH'></legend><bdo id='7VtsH'><pre id='7VtsH'><center id='7VtsH'></center></pre></bdo></b><th id='7VtsH'></th></span></q></dt></tr></i><div id='7VtsH'><tfoot id='7VtsH'></tfoot><dl id='7VtsH'><fieldset id='7VtsH'></fieldset></dl></div>

                <tbody id='7VtsH'></tbody>

              <tfoot id='7VtsH'></tfoot>

                  本文介绍了如何将自定义列表视图设置为对话框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在开发一个应用程序,该应用程序从 Web 服务获取一些数据并显示在列表视图中.我已经实现了一个由 BaseAdapter 扩展的自定义适配器.在 getView() 方法中,我也对原始数据进行了充气.这些都工作得很好.

                  I am developing a application which fetches some data from a web service and displays in a list view. I have implemented a custom adapter which is extended by BaseAdapter. In the getView() method I inflate the raw also.. Those are working perfectly.

                  我的问题是我已经实现了代码以在用户单击列表项时显示一个对话框,但现在我想显示另一个对话框,其中包含一个自定义列表(单击是"按钮时).我还想在该列表视图中显示一些数据.[我有一个 ArrayList 填充了我想要的数据].我正在我的适配器类中编写代码.谁能给我一些想法怎么做?

                  My problem is I have implemented code to show a dialog box when user click on an list item, but now I want to show another dialog box which has a custom list inside it (when Yes button clicked). I also want to show some data in that listview. [I have a ArrayList filled with the data that I wanted] . I'm writing the code inside my adapter class. Can anyone give me some idea how to do it ?

                  这是我的代码:

                  public class NewsRowAdapter extends BaseAdapter  {
                  
                  
                  private Context mContext;
                  private Activity activity;
                  private static LayoutInflater inflater=null;
                  private ArrayList<HashMap<String, String>> data;
                  int resource;
                      //String response;
                      //Context context;
                      //Initialize adapter
                      public NewsRowAdapter(Context ctx,Activity act, int resource,ArrayList<HashMap<String, String>> d) {
                          super();
                          this.resource=resource;
                          this.data = d;
                          this.activity = act;
                          this.mContext = ctx;
                          inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                  
                      }
                  
                  
                      public void dialogshow(final String Date,final String Start,final String End){
                  
                          AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(activity);
                          alertDialogBuilder.setTitle("Confirm your Action!");
                  
                          // set dialog message
                          alertDialogBuilder
                              .setMessage("Click yes to exit!")
                              .setCancelable(false)
                              .setPositiveButton("Yes",new DialogInterface.OnClickListener() {
                                  public void onClick(DialogInterface dialog,int id) {
                                      // if this button is clicked, close
                                      // current activity
                                      //MainActivity.this.finish();
                  
                                  //  Toast.makeText(mContext, "Yes clicked", Toast.LENGTH_LONG).show();
                  
                                      //check similer records
                  
                                  //  ShortList sh = new ShortList();
                  
                                  //  ArrayList<HashMap<String, String>> duplicateList; 
                                  //  duplicateList=sh.getDuplicated(Date, Start, End);
                  
                  
                                      //if duplicates > 1 then show the popup list
                              //      if(duplicateList.size()>1){
                                      AlertDialog.Builder alertDialogBuilder2 = new AlertDialog.Builder(activity);
                  
                                      LayoutInflater infl = activity.getLayoutInflater();
                  
                  
                  
                  
                                      //View vi = infl.inflate(id, root)
                  
                  
                  
                  
                  
                                      alertDialogBuilder2.setView(infl.inflate(R.layout.dialog_row, null))
                                      .setPositiveButton("Accept", new DialogInterface.OnClickListener() {
                  
                                                  @Override
                                                  public void onClick(DialogInterface dialog, int which) {
                                                      // TODO Auto-generated method stub
                                                      Toast.makeText(mContext, "Accepted", Toast.LENGTH_LONG).show();
                                                  }
                                              })
                                              .setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                  
                                                  @Override
                                                  public void onClick(DialogInterface dialog, int which) {
                                                      // TODO Auto-generated method stub
                                                      dialog.dismiss();
                                                  }
                                              });
                  
                                      alertDialogBuilder2.show();
                  
                  
                                  //  }
                  
                  
                  
                                  }
                                })
                                .setNegativeButton("No",new DialogInterface.OnClickListener() {
                                      public void onClick(DialogInterface dialog,int id) {
                                          // if this button is clicked, just close
                                          // the dialog box and do nothing
                                          dialog.cancel();
                                      }
                                  });
                          alertDialogBuilder.show();
                  
                      }
                  
                  
                  
                  @Override
                  public View getView(final int position, View convertView, final ViewGroup parent) {
                  
                  
                      View vi = convertView;
                      if(convertView==null)
                          vi = inflater.inflate(R.layout.row,null);
                  
                  
                          final TextView firstname = (TextView) vi.findViewById(R.id.fname);
                          final TextView lastname = (TextView) vi.findViewById(R.id.lname);
                          final TextView startTime = (TextView) vi.findViewById(R.id.stime);
                          final TextView endTime = (TextView) vi.findViewById(R.id.etime);
                          final TextView date = (TextView) vi.findViewById(R.id.blank);
                          final ImageView img = (ImageView) vi.findViewById(R.id.list_image);
                  
                  
                          HashMap<String, String> song = new HashMap<String, String>();
                          song =data.get(position);
                  
                          firstname.setText(song.get(MainActivity.TAG_PROP_FNAME));
                          lastname.setText(song.get(MainActivity.TAG_PROP_LNAME));
                          startTime.setText(song.get(MainActivity.TAG_STIME));
                          endTime.setText(song.get(MainActivity.TAG_ETIME));
                          date.setText(song.get(MainActivity.TAG_DATE));
                          //imageLoader.DisplayImage(song.get(CustomizedListView.KEY_THUMB_URL), img);
                  
                          Button accept = (Button) vi.findViewById(R.id.button1);
                          accept.setOnClickListener(new OnClickListener() {
                  
                              @Override
                              public void onClick(View v) {
                                  // TODO Auto-generated method stub
                                  final int x = (int) getItemId(position);
                                  /*Intent zoom=new Intent(mContext, Profile.class);
                                  zoom.setFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
                                  zoom.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                                  mContext.startActivity(zoom);*/
                  
                                  // get the intent from the hashmap check if there is similar date and time.
                                  //then store them in a list or array.
                  
                                  String getDate = (String) date.getText();
                                  String getStartTime = startTime.getText().toString();
                                  String getEndTime = endTime.getText().toString();
                  
                                  dialogshow(getDate,getStartTime,getEndTime);
                              }
                      });
                  
                  
                          vi.setOnClickListener(new OnClickListener() {
                  
                              @Override
                              public void onClick(View v) {
                                  // TODO Auto-generated method stub
                  
                                  String getFname = firstname.getText().toString();
                                  Toast.makeText(parent.getContext(), "view clicked: "+getFname , Toast.LENGTH_SHORT).show();
                  
                                  //get the id of the view
                                  //check the id of the request
                                  //call the web service acording to the id
                  
                                  Intent zoom=new Intent(parent.getContext(), Profile.class);   
                                  parent.getContext().startActivity(zoom);
                  
                  
                  
                              }
                          });
                  
                          return vi;
                  
                  
                  }
                  

                  推荐答案

                  你在正确的轨道上,这是我用来动态显示一个包含项目列表的对话框.

                  You are on the right track, Here is what i used to dynamically display a Dialog with a list of items in it.

                  这里提出了一个类似的问题作为参考:Android 自定义列表对话框

                  For reference a similar Question was asked here : Android custom list dialog

                      //String[] list_data; Preloaded with a String array
                  
                      final CharSequence[] items = new CharSequence[list_data.length];
                  
                              for (int i = 0; i < list_data.length; i++) {
                                 items[i] = list_data[i];
                              }
                  
                      AlertDialog.Builder builder = new AlertDialog.Builder(this);
                      builder.setTitle("Select the data you want");
                      builder.setItems(items, new DialogInterface.OnClickListener() {
                  
                          @Override
                          public void onClick(DialogInterface dialog, int which) {
                              //Get the id of the item
                              diag_callback();
                  
                          }
                  
                      });
                  
                      AlertDialog alert = builder.create();
                      alert.show();
                  
                  }
                  
                  public void diag_callback() {
                      //Do someting when the user has made his selection
                  }
                  

                  希望这能解决您的问题.

                  Hope this sorts out your problem.

                  这篇关于如何将自定义列表视图设置为对话框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Android广播接收器显示一个对话框? 下一篇:Webview 在选择框或任何对话框上崩溃

                  相关文章

                  最新文章

                    <bdo id='XdSaT'></bdo><ul id='XdSaT'></ul>
                  1. <i id='XdSaT'><tr id='XdSaT'><dt id='XdSaT'><q id='XdSaT'><span id='XdSaT'><b id='XdSaT'><form id='XdSaT'><ins id='XdSaT'></ins><ul id='XdSaT'></ul><sub id='XdSaT'></sub></form><legend id='XdSaT'></legend><bdo id='XdSaT'><pre id='XdSaT'><center id='XdSaT'></center></pre></bdo></b><th id='XdSaT'></th></span></q></dt></tr></i><div id='XdSaT'><tfoot id='XdSaT'></tfoot><dl id='XdSaT'><fieldset id='XdSaT'></fieldset></dl></div>

                  2. <legend id='XdSaT'><style id='XdSaT'><dir id='XdSaT'><q id='XdSaT'></q></dir></style></legend>

                  3. <small id='XdSaT'></small><noframes id='XdSaT'>

                      <tfoot id='XdSaT'></tfoot>