如何做BaseAdapter作品,当我们扩展它?当我们、如何做、作品、BaseAdapter

2023-09-06 00:57:07 作者:闯她心房占心为王

如何对这些方法的工作原理,当我们扩展 Baseadapter

How these methods works when we extend 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_type 还有谁在那里 get_the_return_value_of getView()

because if we have some_return_type_from_getCount() , than what getView() will get from it and when we return getView()_return_type who else there to get_the_return_value_of getView() .

我完全糊涂了这些方法。

I am totally confused with these methods .

推荐答案

下面是根据我的理解的帖子。所以随意,如果你想提高,而不是批评一些特定点吧。

The post below is according to what I understood. So feel free If You want improve it instead of criticizing for some particular point.

私人的ArrayList< HashMap的<字符串,字符串>> mProjectsList =新的ArrayList< HashMap的<字符串,字符串>>(); (您可以使用任何指针或数组,实际上是由数据和要使用适配器将它绑定)

private ArrayList<HashMap<String, String>> mProjectsList = new ArrayList<HashMap<String, String>>(); (You can use any cursor or array that actually consists data and you want to bind it using adapter)

公众诠释getCount将() - >为您提供了适配器的总要素present(如数组的大小)

public int getCount() -> gives you the Total Elements present in your adapter (like the size of the array)

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

公开对象的getItem(INT位置) - >指出哪些项目被点击干脆回到这里我没有指定位置的方式。它实际上返回您点击与它的所有属性和这就是为什么我们只是回到这里我们点击为了告诉BASEADAPTER类,这个观点是cliked的位置从整体biwe

public Object getItem(int position) -> tells which item was clicked simply return here the way I did specifying the position . It actually return the whole biwe that you clicked with all its properties and thats why we just return here the view of the position we clicked in order to tell the BASEADAPTER Class that this view is cliked

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

众长getItemId(INT位置)会给你想要返回的时候你会taap一些列表项的主要标识。当你真正点击列表视图中的一些项目将返回长格式和INT格式的位置,两件事情的PrimaryKey。

public long getItemId(int position) will give the primary Id that you want to return when you will taap on some list item. when you actually click some item of list view it returns two things primarykey of long format and position of int format..

这此getItemId()方法实际上返回主键

from this getItemId() method actually that returns the primary key.

我们通常会指定,所以当我们用简单的适配器,而不是扩大它会自动返回_id字段长格式的主ID的baseadapter类主键在我们的数据库中_id。 但是,我们必须在这里BaseAdapter手动指定我们想要返回

we usually specify primary key as "_id" in our database so when we use simple adapters instead of extending the baseadapter class it automatically returns the _id field as primary id in long format. But we have to manually specify here in BaseAdapter what we want to return

@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
    }

公开查看getView(INT位置,查看convertView,ViewGroup中父) actaully创建,您绑定您的自定义布局视图

public View getView(int position, View convertView, ViewGroup parent) actaully creates the view where you bind your custom layout

@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;
    }

您只需要此适配器绑定到你的控制,因为我们在这里重载方法 一切都将自动自行处理。

You just have to bind this adapter to your Control, as we are overriding the methods here everything will be handled automatically on its own.