4

を拡張するときにこれらのメソッドがどのように機能するかBaseadapter

public int getCount() 
public Object getItem(int position) 
public long getItemId(int position) 
public View getView(int position, View convertView, ViewGroup parent) 

なぜなら、もし私たちが持っているならsome_return_type_from_getCount()、それから何が得られるのか、そして私たちが他の誰をそこにgetView()戻すのかよりも。getView()_return_typeget_the_return_value_of getView()

私はこれらの方法と完全に混同しています。

4

1 に答える 1

12

以下の投稿は私が理解したことによるものです。ですから、特定の点について批判するのではなく、改善したい場合は、遠慮なくお問い合わせください。

private ArrayList<HashMap<String, String>> mProjectsList = new ArrayList<HashMap<String, String>>();(実際にデータで構成されている任意のカーソルまたは配列を使用でき、アダプターを使用してそれをバインドする必要があります)

public int getCount() ->アダプタに存在する要素の総数(配列のサイズなど)を提供します

@Override
    public int getCount() {
        // TODO Auto-generated method stub
        return mProjectsList.size();
    }

public Object getItem(int position) ->クリックされたアイテムを示します。位置を指定した方法でここに戻るだけです。実際には、クリックしたすべてのプロパティを含むbiwe全体が返されます。そのため、このビューが好まれていることをBASEADAPTERクラスに通知するために、クリックした位置のビューをここに戻します。

@Override
    public Object getItem(int position) {
        // TODO Auto-generated method stub
        return mProjectsList.get(position);
    }

public long getItemId(int position)は、リストアイテムをタップするときに返したいプライマリIDを提供します。リストビューの項目を実際にクリックすると、long形式のprimarykeyとint形式の位置の2つが返されます。

このgetItemId()メソッドから、実際には主キーを返します。

通常、データベースでは主キーを「_id」として指定するため、baseadapterクラスを拡張する代わりに単純なアダプターを使用すると、_idフィールドが長い形式のプライマリIDとして自動的に返されます。ただし、ここBaseAdapterで、何を返すかを手動で指定する必要があります

@Override
    public long getItemId(int position) {
        // TODO Auto-generated method stub
        return Long.parseLong(mProjectsList.get(position).get("ID")) ;
// retuning my Primary id from the arraylist by
    }

public View getView(int position、View convertView、ViewGroup parent)は、カスタムレイアウトをバインドするビューを実際に作成します

@Override
    public View getView(int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub


        //**position**  index of the item whose view we want.
        //**convertView**   the old view to reuse, if possible. Note: You should 
//check that this view is non-null and of an appropriate type before using. If it is 
//not possible to convert this view to display the correct data, this method can create a 
//new view.
  //                        (Lets see if you have total 100 elements in listview , but 
//currently only 10 are visible in screen. So it will create only 10 items at a time as 
//only those are visible.
                //and when you will scroll that listView it will use these same 10 
//Views(elemnts in rows to display new data, instead of creating 10 more new views, which 
//obviously will be efficeient)
                //While alternatively if we dont extend base adapter (but rather 
//use simple binding using simpleadapter) it will then generates whole list of 100 Views 
//in one short whic will be time consuimng/ memory consuming depending uopn the amount of 
//data to be bind   



        //**parent**    the parent that this view will eventually be attached to


        View rowView = convertView; 
        if (rowView == null) { //always required to be checked as mentioned in google docs 
                               // this line checks for if initially row View is null then we have to create the Row View. Once it will be created then it will always Surpass this check and we will keep on reusing this rowView (thats what actually we are looking for) 
          LayoutInflater inflater = mActivitycontext.getLayoutInflater();  // creating instance of layout inflater to inflate our custom layout
          rowView = inflater.inflate(R.layout.projectslist_row, null); //assigend our custom row layout to convertview whic is to be reused
          ViewHolder viewHolder = new ViewHolder();     // ViewHolder is a custom class in which we are storing are UI elaments of Row  
          viewHolder.mprojectslistRowView = (TextView) rowView.findViewById(R.id.projectslist_row); //assigned the id of actual textView thats on our custom layout to the instance of TextView in our static class       
          rowView.setTag(viewHolder);
        }

        ViewHolder holder = (ViewHolder) rowView.getTag();
        String projectName = mProjectsList.get(position).get("ProjectName"); // here i am fetching data from my HashMap ArrayList
        holder.mprojectslistRowView.setText(projectName);       // here i am just assigning what to show in my text view 

        return rowView;
    }

    I created this as inner class 
    static class ViewHolder 
    {
        // create instances for all UI elemnts of your Row layout (here i am showing only text data as row of my list view so only instance of TextView has been created)
        // It is a statci class hence will keep this instance alive all the time and thats Why we will be able to  reuse it again and again.
        TextView mprojectslistRowView;
    }

ここでメソッドをオーバーライドしているため、このアダプターをコントロールにバインドするだけで、すべてが自動的に自動的に処理されます。

于 2013-03-21T11:24:33.323 に答える