Android Set background transparency implementation program

Source: Internet
Author: User
Tags set background

• Set via XML file

The code is as follows Copy Code


Translucent <relativelayout android:background= "#c0000000 ″...>
Completely opaque <relativelayout android:background= "#ff000000 ″ .../>
Fully transparent <relativelayout android:background= "#00000000 ″ .../>

The color and opacity (alpha) values are represented by hexadecimal notation. The range of values for any one color is 0 to 255 (00 to FF). 00 indicates full transparency, and FF represents completely opaque. The order of expressions is "AABBGGRR", where aa=alpha represents transparency, Bb=blue (00 to FF), Gg=green (00 to FF), rr=red (00 to FF).


• Set by program code

  code is as follows copy code
relativelayout Bottomlayout = (relativelayout) Findviewbyid (R.id.view_bottomview);   //Get view
by ID Bottomlayout.getbackground (). Setalpha (128);   //0~255 transparency value, 0 is fully transparent, 255 is opaque
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.