1

我有一个包含项目的列表视图,每个项目都是一个带有 editText 和其他组件的线性布局。

现在,我想将一个事件与 editText 相关联,特别是我需要知道它是否被用户修改。

我的想法是为列表视图创建一个 customAdapter,然后在那里处理事件......这是正确的继续方式吗?

4

1 回答 1

0

是的,创建一个自定义适配器将是要走的路。

您可以在getView()适配器内部处理事件,然后使用它相应地响应事件。

这是这个惊人教程的示例代码:

public class MyListAdapter extends ArrayAdapter{

      private int resource;
      private LayoutInflater inflater;
      private Context context;

      public MyListAdapter ( Context ctx, int resourceId, Listobjects) {

            super( ctx, resourceId, objects );
            resource = resourceId;
            inflater = LayoutInflater.from( ctx );
      context=ctx;
      }

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

            /* create a new view of my layout and inflate it in the row */
            convertView = ( RelativeLayout ) inflater.inflate( resource, null );

            /* Extract the city's object to show */
            City city = getItem( position );

            /* Take the TextView from layout and set the city's name */
            TextView txtName = (TextView) convertView.findViewById(R.id.cityName);
            txtName.setText(city.getName());

            /* Take the TextView from layout and set the city's wiki link */
            TextView txtWiki = (TextView) convertView.findViewById(R.id.cityLinkWiki);
            txtWiki.setText(city.getUrlWiki());

            /* Take the ImageView from layout and set the city's image */
            ImageView imageCity = (ImageView) convertView.findViewById(R.id.ImageCity);
            String uri = "drawable/" + city.getImage();
            int imageResource = context.getResources().getIdentifier(uri, null, context.getPackageName());
            Drawable image = context.getResources().getDrawable(imageResource);
            imageCity.setImageDrawable(image);
            return convertView;
      }
}

整个代码的来源可以在这里找到

于 2013-05-07T16:16:55.243 回答