Android-baseadapter Custom Controls Deep understanding

Source: Internet
Author: User

I. Implementation of custom Controls

The custom control needs to inherit the Baseadapter abstract class, which implements the ListAdapter, Spinneradapter two interfaces, which inherit the adapter interface class, yes, inherit adapter interface , and the four methods implemented by the custom control also come from the adapter interface;

These four methods are described in detail below:

<1>public int GetCount ()

Returns the number of records, if the data source is an array, returns the array length, or the size of the collection if the data is originally a collection;

<2>object getItem (int position)

Returns the object corresponding to the specified subscript;

<3>long getitemid (int position)

Returns the ID corresponding to the specified subscript;

<4>view GetView (int position, View Convertview, viewgroup parent);

Returns the View object corresponding to the subscript

Position: Subscript

Convertview: Reusable Cached View Object

Parent: Father Container

Cond....

Android-baseadapter Custom Controls Deep understanding

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.