Properties of ImageButton, ImageView

Source: Internet
Author: User
Tags xml attribute

"Turn" http://blog.csdn.net/victoryckl/article/details/14162131

Http://blog.sina.com.cn/s/blog_68b3fdc3010158bc.html

ImageButton is a button control with an icon, with the SRC attribute, which is the setting of his icon, as well as a public property of all the controls background, which can also be set to its "icon".

In fact, SRC is the set icon, and background just sets the background. If the size of the control is 100*100 picture resource is 80*80, then with SRC, the picture will be centered, if you use background then the picture will be stretched filled with the control. Importantly, background is the underlying picture resource, SRC is a resource that covers the background above, and they can be used overlay to achieve the selected effect. Used in the Activitygroup. 

-----------------------------------

The difference between SRC and background in Android

Http://blog.sina.com.cn/s/blog_68b3fdc3010158bc.html

ImageButton is a button control with an icon, with the SRC attribute, which is the setting of his icon, as well as a public property of all the controls background, which can also be set to its "icon".

In fact, SRC is the set icon, and background just sets the background. If the size of the control is 100*100 picture resource is 80*80, then with SRC, the picture will be centered, if you use background then the picture will be stretched filled with the control. Importantly, background is the underlying picture resource, SRC is a resource that covers the background above, and they can be used overlay to achieve the selected effect. Used in the Activitygroup.

-----------------------------------

The difference between SRC and background in Android

Http://lexhsu.lofter.com/post/3f493_1b8753?mydomainr=true

The difference between the XML attribute src and background in ImageView:

The background is stretched according to the length and width given by the ImageView component, while SRC stores the size of the original and does not stretch. SRC is the picture content (foreground), BG is the background and can be used simultaneously.

Also: ScaleType only works on SRC; BG can set the transparency, for example, in ImageButton, you can use Android:scaletype to control how the image is scaled, the sample code is as follows:

<imageview android:id= "@+id/img"
android:src= "@drawable/logo"
Android:scaletype= "Centerinside"
Android:layout_width= "60dip"
android:layout_height= "60dip"
Android:layout_centervertical= "true"/>

Description: Centerinside represents scaling the picture so that the picture is longer (wider) than the corresponding dimension of the view.

  Note: The picture you control is a resource, not a background, i.e. android:src= "@drawable/logo", not android:background= "@drawable/logo". The program dynamically loads the picture similarly, for example: should Imgview.setimageresource (r.drawable.*), but not Imgview.setbackgroundresource (r.drawable.*);

Attached: More detailed description of ScaleType:

Center/center display pictures in the center of the view and do not scale the picture

Center_crop/centercrop scale the picture so that the image is longer (wider) than equal to the corresponding dimension of the view

Center_inside/centerinside scale the picture so that the image is longer (wider) than equal to the corresponding dimension of the view

Fit_center/fitcenter scale the picture to the smallest edge of the view, centered on the display

Fit_end/fitend scale the picture to the smallest edge of the view, displayed in the lower part of the view

Fit_start/fitstart enlarge/Shrink the picture to the smallest edge of the view, displayed in the upper part of the view

Fit_xy/fitxy The picture is not scaled proportionally to the size of the view

Matrix/matrix using matrices to draw

Properties of ImageButton, ImageView

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.