Android put multiple drawable into an array to take out

Source: Internet
Author: User

Arrays are used for a set of picture resources corresponding to a set of view settings.

1. defined in String.xml. pic1234 is a picture that has been placed in the Drawable folder.

<string-array name= "Main_tab_images" >
<item> @drawable/pic1</item>
<item> @drawable/pic2</item>
<item> @drawable/pic3</item>
<item> @drawable/pic4</item>
</string-array>

2. Get the ID of the picture

TypedArray ar = context.getresources (). Obtaintypedarray (R.array.actions_images);
int len = Ar.length ();
int[] Resids = new Int[len];
for (int i = 0; i < len; i++) {
Resids[i] = Ar.getresourceid (i, 0);//ID of the resource

}

Http://stackoverflow.com/questions/6945678/android-storing-r-drawable-ids-in-xml-array

Android put multiple drawable into an array to take out

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.