listview中的edittext键盘移动android中的其他列表项

时间:2011-01-13 10:48:28

标签: android listview android-edittext

我有一个列表视图,其中包含所有列表项的不同布局。我的第一个listitem包含一个edittext。每当我点击它,键盘就会显示出来。但是这个键盘取代了listview中的所有列表项。每当我点击该edittext时,项目都会改变它们的位置。我真的很困惑。

这是'我的代码:

 public View getView(int position, View convertView, ViewGroup parent) {

         ViewHolder holder;
         if (convertView == null) {
             if(position == 0)
             {
                 convertView = mInflater.inflate(R.layout.remindertitle, null); 
                 edttxtForTitle = (EditText) convertView.findViewById(R.id.edittext);
                 convertView.setMinimumHeight(60);
             }

             else if(position == 1)
             {
                 convertView = mInflater.inflate(R.layout.reminderfrom, null);    
                 TextView txtTitle = (TextView) convertView.findViewById(R.id.txtvwFrom);
                 txtTitle.setText("From");
                 mPickDate = (Button) convertView.findViewById(R.id.btnDate);
                 mPickDate.setText(
                            new StringBuilder()
                                    // Month is 0 based so add 1
                                    .append(mDays[mDay].substring(0, 3)).append(", ")
                                    .append(mDay).append(" ")
                                    .append(mMonths[mMonth]).append(" ")
                                    .append(mYear).append(" "));
                 mPickDate.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View v) {
                            settingValueForFromOrTo = true;
                            showDialog(DATE_DIALOG_ID);
                        }
                    });

                 strDateFrom = new StringBuilder()
                 // Month is 0 based so add 1
                .append(mDays[mDay].substring(0, 3)).append(", ")
                .append(mDay).append(" ")
                 .append(mMonths[mMonth]).append(" ")
                 .append(mYear).append(" ");

                 mPickTime = (Button) convertView.findViewById(R.id.btnTime);
                 mPickTime.setText(
                         new StringBuilder()
                            .append(pad(mHour)).append(":")
                            .append(pad(mMinute)));
                 mPickTime.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View v) {
                            settingValueForFromOrTo = true;
                            showDialog(TIME_DIALOG_ID);
                        }
                    });
                 strTimeFrom = new StringBuilder()
                .append(pad(mHour)).append(":")
                .append(pad(mMinute));
             }

             else if(position == 2)
             {
                 convertView = mInflater.inflate(R.layout.reminderto, null);    
                 TextView txtTitle = (TextView) convertView.findViewById(R.id.txtvwTo);
                 txtTitle.setText("To");
                 mPickDateForFinalDate = (Button) convertView.findViewById(R.id.btnDatefinal);
                 mPickDateForFinalDate.setText(
                            new StringBuilder()
                                    // Month is 0 based so add 1
                                    .append(mDays[mfinalDay].substring(0, 3)).append(", ")
                                    .append(mfinalDay).append(" ")
                                    .append(mMonths[mfinalMonth]).append(" ")
                                    .append(mfinalYear).append(" "));
                 mPickDateForFinalDate.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View v) {
                            settingValueForFromOrTo = false;
                            showDialog(DATE_DIALOG_ID_FINAL);
                        }
                    });

                 strDateFrom = new StringBuilder()
                 // Month is 0 based so add 1
                .append(mDays[mfinalDay].substring(0, 3)).append(", ")
                .append(mfinalDay).append(" ")
                 .append(mMonths[mfinalMonth]).append(" ")
                 .append(mfinalYear).append(" ");

                 mPickTimeForFinalTime = (Button) convertView.findViewById(R.id.btnTimefinal);
                 mPickTimeForFinalTime.setText(
                         new StringBuilder()
                            .append(pad(mfinalHour)).append(":")
                            .append(pad(mfinalMinute)));
                 mPickTimeForFinalTime.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View v) {
                            settingValueForFromOrTo = false;
                            showDialog(TIME_DIALOG_ID_FINAL);
                        }
                    });
                 strTimeFrom = new StringBuilder()
                .append(pad(mfinalHour)).append(":")
                .append(pad(mfinalMinute));
                 }

             else if(position == 3)
             {
                 convertView = mInflater.inflate(R.layout.allday, null);   

                 convertView.setMinimumHeight(60);
             }

             else if(position == 4)
             {
                 convertView = mInflater.inflate(R.layout.alarm, null);
                 txtAlarm = (TextView) convertView.findViewById(R.id.txtAlarmValue);
                 convertView.setMinimumHeight(60);
             }

             else if(position == 5)
             {
                 convertView = mInflater.inflate(R.layout.repeat_view, null);  
                 txtRepeat = (TextView)convertView.findViewById(R.id.txtRepeatValue);
                 convertView.setMinimumHeight(60);
             }

             else if(position == 6)
             {
                 convertView = mInflater.inflate(R.layout.submitbutton_view, null);  
                 Button btnSubmit = (Button)convertView.findViewById(R.id.btnSubmit);
                 btnSubmit.setOnClickListener(new View.OnClickListener() {
                        public void onClick(View v) {
                            String title = edttxtForTitle.getText().toString();

                            Log.v("","all the values title" + title);
                            Log.v("","all the values datefrom" + strDateFrom.toString());
                            Log.v("","all the values dateto" + strDateTo.toString());
                            Log.v("","all the values timefrom" + strTimeFrom.toString());
                            Log.v("","all the values timeto" + strTimeTo.toString());
                            Log.v("","all the values allday" + allDay);
                            Log.v("","all the values alarm" + strAlarm);
                            Log.v("","all the values repeat" + strRepeat);

                        }
                    });
                 convertView.setMinimumHeight(60);
             }

             holder = new ViewHolder();      
             holder.btnFromDate = (Button) convertView.findViewById(R.id.btnDate);
             holder.btnFromTime = (Button) convertView.findViewById(R.id.btnTime);
             holder.txtLabelTitle = (TextView) convertView.findViewById(R.id.txtvwFrom);
             holder.btnFromDatefinal = (Button) convertView.findViewById(R.id.btnDatefinal);
             holder.btnFromTimefinal = (Button) convertView.findViewById(R.id.btnTimefinal);
             holder.txtLabelTitlefinal = (TextView) convertView.findViewById(R.id.txtvwTo);

             convertView.setTag(holder);    

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

         return convertView;
     }

      class ViewHolder {
         Button btnFromDate; 
         Button btnFromTime; 
         TextView txtLabelTitle;
         Button btnFromDatefinal; 
         Button btnFromTimefinal; 
         TextView txtLabelTitlefinal;
       }

我是在搞乱LayoutInflator吗?

有人可以帮忙吗?

提前完成。

1 个答案:

答案 0 :(得分:0)

您可以使用此代码:


你必须在代码

下添加android.manifeast.xml文件

android:windowSoftInputMode="adjustPan"


为了你的目的,你也可以设置其他属性。