The nested GridView in the Android ListView does not exactly show how to resolve

Source: Internet
Author: User

The project needs to display more than one picture in the ListView, using the GridView, but if the use of ordinary gridview,item just show a part, beyond the first line will not be able to show, this is very silent, So we have to inherit the GridView rewrite the Onmeasure method to measure the height of the child control ...

This is just a code for defining the GridView, which is used directly in XML, and can be invoked in the ListView adapter:

The code is as follows Copy Code
public class Gridviewforlistview extends GridView {
    public Gridviewforlistview (context context) {
 & nbsp;      Super (context);

   }

    public Gridviewforlistview, AttributeSet Attrs) {
        super (context, attrs);
   }

     @Override
    protected void onmeasure (int widthmeasurespec, int heightmeasurespec) {
        int expandspec = Measurespec.makemeasurespec (Integer.max_value >> 2,
                measurespec.at_most);
        super.onmeasure (Widthmeasurespec, Expandspec);
   }
}

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.